Channel.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
- /*
- * Created on 2005-11-10
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- package com.mycompany.news.dto;
- /**
- * @author Administrator
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- public class Channel {
- private Long channelID;
- private String channelName;
- private Integer channelOrder;
- private Integer channelStatus;
- /**
- * @return Returns the channelID.
- */
- public Long getChannelID() {
- return channelID;
- }
- /**
- * @param channelID The channelID to set.
- */
- public void setChannelID(Long channelID) {
- this.channelID = channelID;
- }
- /**
- * @return Returns the channelName.
- */
- public String getChannelName() {
- return channelName;
- }
- /**
- * @param channelName The channelName to set.
- */
- public void setChannelName(String channelName) {
- this.channelName = channelName;
- }
- /**
- * @return Returns the channelOrder.
- */
- public Integer getChannelOrder() {
- return channelOrder;
- }
- /**
- * @param channelOrder The channelOrder to set.
- */
- public void setChannelOrder(Integer channelOrder) {
- this.channelOrder = channelOrder;
- }
- /**
- * @return Returns the channelStatus.
- */
- public Integer getChannelStatus() {
- return channelStatus;
- }
- /**
- * @param channelStatus The channelStatus to set.
- */
- public void setChannelStatus(Integer channelStatus) {
- this.channelStatus = channelStatus;
- }
- }