- /*
- * Created on 2005-12-2
- *
- * 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 Column {
- private Long columnId;
- private Long channelId;
- private String columnName;
- private Integer columnStatus;
- private Long parentColumn;
- private Long topColumn;
- private Integer currentLevel;
- private Integer leafNode;
- private Integer columnOrder;
- /**
- * @return Returns the channel_id.
- */
- public Long getChannelId() {
- return channelId;
- }
- /**
- * @param channel_id The channel_id to set.
- */
- public void setChannelId(Long channel_id) {
- this.channelId = channel_id;
- }
- /**
- * @return Returns the column_id.
- */
- public Long getColumnId() {
- return columnId;
- }
- /**
- * @param column_id The column_id to set.
- */
- public void setColumnId(Long column_id) {
- this.columnId = column_id;
- }
- /**
- * @return Returns the column_name.
- */
- public String getColumnName() {
- return columnName;
- }
- /**
- * @param column_name The column_name to set.
- */
- public void setColumnName(String column_name) {
- this.columnName = column_name;
- }
- /**
- * @return Returns the column_status.
- */
- public Integer getColumnStatus() {
- return columnStatus;
- }
- /**
- * @param column_status The column_status to set.
- */
- public void setColumnStatus(Integer column_status) {
- this.columnStatus = column_status;
- }
- /**
- * @return Returns the current_level.
- */
- public Integer getCurrentLevel() {
- return currentLevel;
- }
- /**
- * @param current_level The current_level to set.
- */
- public void setCurrentLevel(Integer current_level) {
- this.currentLevel = current_level;
- }
- /**
- * @return Returns the leaf_node.
- */
- public Integer getLeafNode() {
- return leafNode;
- }
- /**
- * @param leaf_node The leaf_node to set.
- */
- public void setLeafNode(Integer leaf_node) {
- this.leafNode = leaf_node;
- }
- /**
- * @return Returns the parent_column.
- */
- public Long getParentColumn() {
- return parentColumn;
- }
- /**
- * @param parent_column The parent_column to set.
- */
- public void setParentColumn(Long parent_column) {
- this.parentColumn = parent_column;
- }
- /**
- * @return Returns the top_column.
- */
- public Long getTopColumn() {
- return topColumn;
- }
- /**
- * @param top_column The top_column to set.
- */
- public void setTopColumn(Long top_column) {
- this.topColumn = top_column;
- }
- /**
- * @return Returns the order.
- */
- public Integer getColumnOrder() {
- return columnOrder;
- }
- /**
- * @param order The order to set.
- */
- public void setColumnOrder(Integer order) {
- this.columnOrder = order;
- }
- }