e319c8f0e2c38f881573eb2ec0e8b2fbc7df904d.svn-base 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * TacPblmQlttvListParam
  7. *
  8. * @author lune
  9. * @date 2019-9-19
  10. */
  11. public class TacPblmQlttvListParam extends PageParam implements Serializable {
  12. @ApiModelProperty("主键id")
  13. private String id;
  14. @ApiModelProperty("专业类型(1:前期;2:建管;3:计划;4:财务;5:质量;6:安全)")
  15. private String type;
  16. @ApiModelProperty("问题定性分类编码")
  17. private String code;
  18. @ApiModelProperty("问题定性分类名称")
  19. private String name;
  20. @ApiModelProperty("排序顺序")
  21. private Double sn;
  22. @ApiModelProperty("关联问题序号")
  23. private String relCode;
  24. @ApiModelProperty("备注信息")
  25. private String note;
  26. public String getRelCode() {
  27. return relCode;
  28. }
  29. public String getNote() {
  30. return note;
  31. }
  32. public void setNote(String note) {
  33. this.note = note;
  34. }
  35. public void setRelCode(String relCode) {
  36. this.relCode = relCode;
  37. }
  38. public TacPblmQlttvListParam() {
  39. }
  40. public String getId() {
  41. return id;
  42. }
  43. public void setId(String id) {
  44. this.id = id;
  45. }
  46. public String getType() {
  47. return type;
  48. }
  49. public void setType(String type) {
  50. this.type = type;
  51. }
  52. public String getCode() {
  53. return code;
  54. }
  55. public void setCode(String code) {
  56. this.code = code;
  57. }
  58. public String getName() {
  59. return name;
  60. }
  61. public void setName(String name) {
  62. this.name = name;
  63. }
  64. public Double getSn() {
  65. return sn;
  66. }
  67. public void setSn(Double sn) {
  68. this.sn = sn;
  69. }
  70. }