4b0fef86eb00ad54e7b6ec317578990dbe4a9b7a.svn-base 2.6 KB

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