ad9f942cae33184d97e8df336c1dc7937b59fe59.svn-base 3.0 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. * DicParam
  9. *
  10. * @author lhc
  11. * @date 2020-8-5
  12. */
  13. public class DicParam 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 = "bzcode")
  21. private String bzcode;
  22. // 代码
  23. @ApiParam(name = "代码")
  24. @ApiModelProperty(value = "代码", name = "itemcode")
  25. private String itemcode;
  26. // 常数代码
  27. @ApiParam(name = "常数代码")
  28. @ApiModelProperty(value = "常数代码", name = "code")
  29. private String code;
  30. // 名称
  31. @ApiParam(name = "名称")
  32. @ApiModelProperty(value = "名称", name = "name")
  33. private String name;
  34. // 说明
  35. @ApiParam(name = "说明")
  36. @ApiModelProperty(value = "说明", name = "tdesc")
  37. private String tdesc;
  38. // 是否有效 0 无效 1有效
  39. @ApiParam(name = "是否有效 0 无效 1有效")
  40. @ApiModelProperty(value = "是否有效 0 无效 1有效", name = "isValid")
  41. private String isValid;
  42. // 排序
  43. @ApiParam(name = "排序")
  44. @ApiModelProperty(value = "排序", name = "dOrder")
  45. private Long dOrder;
  46. // 创建时间
  47. @ApiParam(name = "创建时间")
  48. @ApiModelProperty(value = "创建时间", name = "intm")
  49. private Date intm;
  50. // 更新时间
  51. @ApiParam(name = "更新时间")
  52. @ApiModelProperty(value = "更新时间", name = "uptm")
  53. private Date uptm;
  54. public DicParam() {
  55. }
  56. public String getId() {
  57. return id;
  58. }
  59. public void setId(String id) {
  60. this.id = id;
  61. }
  62. public String getBzcode() {
  63. return bzcode;
  64. }
  65. public void setBzcode(String bzcode) {
  66. this.bzcode = bzcode;
  67. }
  68. public String getItemcode() {
  69. return itemcode;
  70. }
  71. public void setItemcode(String itemcode) {
  72. this.itemcode = itemcode;
  73. }
  74. public String getCode() {
  75. return code;
  76. }
  77. public void setCode(String code) {
  78. this.code = code;
  79. }
  80. public String getName() {
  81. return name;
  82. }
  83. public void setName(String name) {
  84. this.name = name;
  85. }
  86. public String getTdesc() {
  87. return tdesc;
  88. }
  89. public void setTdesc(String tdesc) {
  90. this.tdesc = tdesc;
  91. }
  92. public String getIsValid() {
  93. return isValid;
  94. }
  95. public void setIsValid(String isValid) {
  96. this.isValid = isValid;
  97. }
  98. public Long getDOrder() {
  99. return dOrder;
  100. }
  101. public void setDOrder(Long dOrder) {
  102. this.dOrder = dOrder;
  103. }
  104. public Date getIntm() {
  105. return intm;
  106. }
  107. public void setIntm(Date intm) {
  108. this.intm = intm;
  109. }
  110. public Date getUptm() {
  111. return uptm;
  112. }
  113. public void setUptm(Date uptm) {
  114. this.uptm = uptm;
  115. }
  116. }