82b482918dba0f151bee57a2a4f8115269872aa9.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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:BriefReport
  8. *
  9. * @author xuw
  10. * @date 2019-3-11
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BriefReport extends BaseBean implements Serializable {
  14. private String addCode;
  15. private String adCode;
  16. private String adName;
  17. private String code;
  18. private String pnm;
  19. private int num;
  20. @ApiModelProperty("不同督查对象分类不同")
  21. private String type;
  22. public BriefReport() {
  23. }
  24. @Override
  25. public String toString() {
  26. return "BriefReport [" + "code=" + code + ", pnm=" + pnm + ", num=" + num + "]";
  27. }
  28. public String getType() {
  29. return type;
  30. }
  31. public void setType(String type) {
  32. this.type = type;
  33. }
  34. public String getAdCode() {
  35. return adCode;
  36. }
  37. public void setAdCode(String adCode) {
  38. this.adCode = adCode;
  39. }
  40. public String getAdName() {
  41. return adName;
  42. }
  43. public void setAdName(String adName) {
  44. this.adName = adName;
  45. }
  46. public String getCode() {
  47. return code;
  48. }
  49. public void setCode(String code) {
  50. this.code = code;
  51. }
  52. public String getPnm() {
  53. return pnm;
  54. }
  55. public void setPnm(String pnm) {
  56. this.pnm = pnm;
  57. }
  58. public int getNum() {
  59. return num;
  60. }
  61. public void setNum(int num) {
  62. this.num = num;
  63. }
  64. public String getAddCode() {
  65. return adCode + code;
  66. }
  67. public void setAddCode(String addCode) {
  68. this.addCode = adCode + code;
  69. }
  70. }