7688e495842c1c07f540383f567e0181dad5d8a1.svn-base 1.7 KB

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