16de699ba547924c9da61b586aa6eda37bb66c97.svn-base 2.0 KB

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