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

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * Created on 2005-12-2
  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 Column {
  15. private Long columnId;
  16. private Long channelId;
  17. private String columnName;
  18. private Integer columnStatus;
  19. private Long parentColumn;
  20. private Long topColumn;
  21. private Integer currentLevel;
  22. private Integer leafNode;
  23. private Integer columnOrder;
  24. /**
  25.  * @return Returns the channel_id.
  26.  */
  27. public Long getChannelId() {
  28. return channelId;
  29. }
  30. /**
  31.  * @param channel_id The channel_id to set.
  32.  */
  33. public void setChannelId(Long channel_id) {
  34. this.channelId = channel_id;
  35. }
  36. /**
  37.  * @return Returns the column_id.
  38.  */
  39. public Long getColumnId() {
  40. return columnId;
  41. }
  42. /**
  43.  * @param column_id The column_id to set.
  44.  */
  45. public void setColumnId(Long column_id) {
  46. this.columnId = column_id;
  47. }
  48. /**
  49.  * @return Returns the column_name.
  50.  */
  51. public String getColumnName() {
  52. return columnName;
  53. }
  54. /**
  55.  * @param column_name The column_name to set.
  56.  */
  57. public void setColumnName(String column_name) {
  58. this.columnName = column_name;
  59. }
  60. /**
  61.  * @return Returns the column_status.
  62.  */
  63. public Integer getColumnStatus() {
  64. return columnStatus;
  65. }
  66. /**
  67.  * @param column_status The column_status to set.
  68.  */
  69. public void setColumnStatus(Integer column_status) {
  70. this.columnStatus = column_status;
  71. }
  72. /**
  73.  * @return Returns the current_level.
  74.  */
  75. public Integer getCurrentLevel() {
  76. return currentLevel;
  77. }
  78. /**
  79.  * @param current_level The current_level to set.
  80.  */
  81. public void setCurrentLevel(Integer current_level) {
  82. this.currentLevel = current_level;
  83. }
  84. /**
  85.  * @return Returns the leaf_node.
  86.  */
  87. public Integer getLeafNode() {
  88. return leafNode;
  89. }
  90. /**
  91.  * @param leaf_node The leaf_node to set.
  92.  */
  93. public void setLeafNode(Integer leaf_node) {
  94. this.leafNode = leaf_node;
  95. }
  96. /**
  97.  * @return Returns the parent_column.
  98.  */
  99. public Long getParentColumn() {
  100. return parentColumn;
  101. }
  102. /**
  103.  * @param parent_column The parent_column to set.
  104.  */
  105. public void setParentColumn(Long parent_column) {
  106. this.parentColumn = parent_column;
  107. }
  108. /**
  109.  * @return Returns the top_column.
  110.  */
  111. public Long getTopColumn() {
  112. return topColumn;
  113. }
  114. /**
  115.  * @param top_column The top_column to set.
  116.  */
  117. public void setTopColumn(Long top_column) {
  118. this.topColumn = top_column;
  119. }
  120. /**
  121.  * @return Returns the order.
  122.  */
  123. public Integer getColumnOrder() {
  124. return columnOrder;
  125. }
  126. /**
  127.  * @param order The order to set.
  128.  */
  129. public void setColumnOrder(Integer order) {
  130. this.columnOrder = order;
  131. }
  132. }