a405cbf62f01478555f0f30ce4920217fe5a46b4.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:Folder
  9. *
  10. * @author lhc
  11. * @date 2020-6-8
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class Folder extends BaseBean implements Serializable {
  15. // 节点ID
  16. @ApiModelProperty(value = "节点ID", name = "id")
  17. private String id;
  18. // 父节点
  19. @ApiModelProperty(value = "父节点", name = "pid")
  20. private String pid;
  21. // 文件夹名称
  22. @ApiModelProperty(value = "文件夹名称", name = "nm")
  23. private String nm;
  24. // 单位ID
  25. @ApiModelProperty(value = "单位ID", name = "orgId")
  26. private String orgId;
  27. // 创建人
  28. @ApiModelProperty(value = "创建人", name = "persId")
  29. private String persId;
  30. // 创建时间
  31. @ApiModelProperty(value = "创建时间", name = "intm")
  32. private Date intm;
  33. // 更新时间
  34. @ApiModelProperty(value = "更新时间", name = "uptm")
  35. private Date uptm;
  36. // 数据状态(0:正常;9:删除)
  37. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  38. private String dataStat;
  39. public Folder() {
  40. }
  41. public String getId() {
  42. return id;
  43. }
  44. public void setId(String id) {
  45. this.id = id;
  46. }
  47. public String getPid() {
  48. return pid;
  49. }
  50. public void setPid(String pid) {
  51. this.pid = pid;
  52. }
  53. public String getNm() {
  54. return nm;
  55. }
  56. public void setNm(String nm) {
  57. this.nm = nm;
  58. }
  59. @Override
  60. public String getOrgId() {
  61. return orgId;
  62. }
  63. @Override
  64. public void setOrgId(String orgId) {
  65. this.orgId = orgId;
  66. }
  67. public String getPersId() {
  68. return persId;
  69. }
  70. public void setPersId(String persId) {
  71. this.persId = persId;
  72. }
  73. public Date getIntm() {
  74. return intm;
  75. }
  76. public void setIntm(Date intm) {
  77. this.intm = intm;
  78. }
  79. public Date getUptm() {
  80. return uptm;
  81. }
  82. public void setUptm(Date uptm) {
  83. this.uptm = uptm;
  84. }
  85. public String getDataStat() {
  86. return dataStat;
  87. }
  88. public void setDataStat(String dataStat) {
  89. this.dataStat = dataStat;
  90. }
  91. @Override
  92. public String toString() {
  93. return "Folder [" + "id=" + id + ", pid=" + pid + ", nm=" + nm + ", orgId=" + orgId + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  94. }
  95. }