541d22b20f5ae16e4852ac7248f09d7a6dc79c2d.svn-base 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package cn.com.goldenwater.dcproj.dto;
  2. /**
  3. * Created by 61618 on 2019/4/20.
  4. */
  5. public class SupInsertResult {
  6. private String id;
  7. private String nm;
  8. private Integer persCount;
  9. private Integer objCount;
  10. private Integer areaCount;
  11. public String getId() {
  12. return id;
  13. }
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. public String getNm() {
  18. return nm;
  19. }
  20. public void setNm(String nm) {
  21. this.nm = nm;
  22. }
  23. public Integer getPersCount() {
  24. return persCount;
  25. }
  26. public void setPersCount(Integer persCount) {
  27. this.persCount = persCount;
  28. }
  29. public Integer getObjCount() {
  30. return objCount;
  31. }
  32. public void setObjCount(Integer objCount) {
  33. this.objCount = objCount;
  34. }
  35. public Integer getAreaCount() {
  36. return areaCount;
  37. }
  38. public void setAreaCount(Integer areaCount) {
  39. this.areaCount = areaCount;
  40. }
  41. @Override
  42. public String toString() {
  43. return "SupInsertResult{" +
  44. "id='" + id + '\'' +
  45. ", nm='" + nm + '\'' +
  46. ", persCount=" + persCount +
  47. ", objCount=" + objCount +
  48. ", areaCount=" + areaCount +
  49. '}';
  50. }
  51. }