Dept.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.post.pageModel;
  2. import java.io.Serializable;
  3. import java.sql.Timestamp;
  4. import java.util.Date;
  5. import java.util.List;
  6. public class Dept implements Serializable {
  7. private String cid;
  8. private String pid;
  9. private String id;
  10. private String text;
  11. private Integer cseq;
  12. private String pdeptName;
  13. private String cdeptName;
  14. private Timestamp ccreateDatetime;
  15. private Timestamp cmodifyDatetime;
  16. private String state;
  17. public Integer getCseq() {
  18. return cseq;
  19. }
  20. public void setCseq(Integer cseq) {
  21. this.cseq = cseq;
  22. }
  23. public Timestamp getCcreateDatetime() {
  24. return ccreateDatetime;
  25. }
  26. public void setCcreateDatetime(Timestamp ccreateDatetime) {
  27. this.ccreateDatetime = ccreateDatetime;
  28. }
  29. public Timestamp getCmodifyDatetime() {
  30. return cmodifyDatetime;
  31. }
  32. public void setCmodifyDatetime(Timestamp cmodifyDatetime) {
  33. this.cmodifyDatetime = cmodifyDatetime;
  34. }
  35. public String getId() {
  36. return id;
  37. }
  38. public void setId(String id) {
  39. this.id = id;
  40. }
  41. public String getText() {
  42. return text;
  43. }
  44. public void setText(String text) {
  45. this.text = text;
  46. }
  47. public String getState() {
  48. return state;
  49. }
  50. public void setState(String state) {
  51. this.state = state;
  52. }
  53. private List<Dept> children;
  54. public String getPdeptName() {
  55. return pdeptName;
  56. }
  57. public void setPdeptName(String pdeptName) {
  58. this.pdeptName = pdeptName;
  59. }
  60. public List<Dept> getChildren() {
  61. return children;
  62. }
  63. public void setChildren(List<Dept> children) {
  64. this.children = children;
  65. }
  66. public String getCid() {
  67. return cid;
  68. }
  69. public void setCid(String cid) {
  70. this.cid = cid;
  71. }
  72. public String getPid() {
  73. return pid;
  74. }
  75. public void setPid(String pid) {
  76. this.pid = pid;
  77. }
  78. public String getCdeptName() {
  79. return cdeptName;
  80. }
  81. public void setCdeptName(String cdeptName) {
  82. this.cdeptName = cdeptName;
  83. }
  84. }