a38883f8b43767dc569cfdf71bf154411f03d8d8.svn-base 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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:TacPawpLaws
  8. *
  9. * @author lune
  10. * @date 2019-6-24
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class TacPawpLaws extends BaseBean implements Serializable {
  14. @ApiModelProperty("主键id")
  15. private String id;
  16. @ApiModelProperty("1前期与设计,2建设管理,3计划下达与执行,4资金使用与管理,5工程质量,6工程安全")
  17. private String tacType;
  18. @ApiModelProperty("类别")
  19. private String class1Name;
  20. @ApiModelProperty("专业")
  21. private String class2Name;
  22. @ApiModelProperty("法规序号")
  23. private String sn;
  24. @ApiModelProperty("法规名称")
  25. private String lawName;
  26. public String getId() {
  27. return id;
  28. }
  29. public void setId(String id) {
  30. this.id = id;
  31. }
  32. public TacPawpLaws() {
  33. }
  34. public String getTacType() {
  35. return tacType;
  36. }
  37. public void setTacType(String tacType) {
  38. this.tacType = tacType;
  39. }
  40. public String getClass1Name() {
  41. return class1Name;
  42. }
  43. public void setClass1Name(String class1Name) {
  44. this.class1Name = class1Name;
  45. }
  46. public String getClass2Name() {
  47. return class2Name;
  48. }
  49. public void setClass2Name(String class2Name) {
  50. this.class2Name = class2Name;
  51. }
  52. public String getSn() {
  53. return sn;
  54. }
  55. public void setSn(String sn) {
  56. this.sn = sn;
  57. }
  58. public String getLawName() {
  59. return lawName;
  60. }
  61. public void setLawName(String lawName) {
  62. this.lawName = lawName;
  63. }
  64. @Override
  65. public String toString() {
  66. return "TacPawpLaws [" + "tacType=" + tacType + ", class1Name=" + class1Name + ", class2Name=" + class2Name + ", sn=" + sn + ", lawName=" + lawName + "]";
  67. }
  68. }