Channel.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * Created on 2005-11-10
  3.  *
  4.  * TODO To change the template for this generated file go to
  5.  * Window - Preferences - Java - Code Style - Code Templates
  6.  */
  7. package com.mycompany.news.dto;
  8. /**
  9.  * @author Administrator
  10.  *
  11.  * TODO To change the template for this generated type comment go to
  12.  * Window - Preferences - Java - Code Style - Code Templates
  13.  */
  14. public class Channel {
  15. private Long channelID;
  16. private String channelName;
  17. private Integer channelOrder;
  18. private Integer  channelStatus;
  19. /**
  20.  * @return Returns the channelID.
  21.  */
  22. public Long getChannelID() {
  23. return channelID;
  24. }
  25. /**
  26.  * @param channelID The channelID to set.
  27.  */
  28. public void setChannelID(Long channelID) {
  29. this.channelID = channelID;
  30. }
  31. /**
  32.  * @return Returns the channelName.
  33.  */
  34. public String getChannelName() {
  35. return channelName;
  36. }
  37. /**
  38.  * @param channelName The channelName to set.
  39.  */
  40. public void setChannelName(String channelName) {
  41. this.channelName = channelName;
  42. }
  43. /**
  44.  * @return Returns the channelOrder.
  45.  */
  46. public Integer getChannelOrder() {
  47. return channelOrder;
  48. }
  49. /**
  50.  * @param channelOrder The channelOrder to set.
  51.  */
  52. public void setChannelOrder(Integer channelOrder) {
  53. this.channelOrder = channelOrder;
  54. }
  55. /**
  56.  * @return Returns the channelStatus.
  57.  */
  58. public Integer getChannelStatus() {
  59. return channelStatus;
  60. }
  61. /**
  62.  * @param channelStatus The channelStatus to set.
  63.  */
  64. public void setChannelStatus(Integer channelStatus) {
  65. this.channelStatus = channelStatus;
  66. }
  67. }