3953dbaf5f60ad41f6e5c5d0cc6b066401108e61.svn-base 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package cn.com.goldenwater.dcproj.dto;
  2. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  3. import java.io.Serializable;
  4. /**
  5. * @author lhc
  6. * @date 2020/10/13 17:19
  7. */
  8. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  9. public class BisInspTaskTotal implements Serializable {
  10. private int objSize;
  11. private int pblmSize;
  12. private int mendSize;
  13. private int pblmLogSize;
  14. private int infoPlbm;
  15. private int warmPlbm;
  16. private int errorPlbm;
  17. public BisInspTaskTotal() {
  18. }
  19. public int getMendSize() {
  20. return mendSize;
  21. }
  22. public void setMendSize(int mendSize) {
  23. this.mendSize = mendSize;
  24. }
  25. public int getPblmLogSize() {
  26. return pblmLogSize;
  27. }
  28. public void setPblmLogSize(int pblmLogSize) {
  29. this.pblmLogSize = pblmLogSize;
  30. }
  31. public int getInfoPlbm() {
  32. return infoPlbm;
  33. }
  34. public void setInfoPlbm(int infoPlbm) {
  35. this.infoPlbm = infoPlbm;
  36. }
  37. public int getWarmPlbm() {
  38. return warmPlbm;
  39. }
  40. public void setWarmPlbm(int warmPlbm) {
  41. this.warmPlbm = warmPlbm;
  42. }
  43. public int getErrorPlbm() {
  44. return errorPlbm;
  45. }
  46. public void setErrorPlbm(int errorPlbm) {
  47. this.errorPlbm = errorPlbm;
  48. }
  49. public int getObjSize() {
  50. return objSize;
  51. }
  52. public void setObjSize(int objSize) {
  53. this.objSize = objSize;
  54. }
  55. public int getPblmSize() {
  56. return pblmSize;
  57. }
  58. public void setPblmSize(int pblmSize) {
  59. this.pblmSize = pblmSize;
  60. }
  61. }