| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package cn.com.goldenwater.dcproj.dto;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * @author lhc
- * @date 2020/10/13 17:19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspTaskTotal implements Serializable {
- private int objSize;
- private int pblmSize;
- private int mendSize;
- private int pblmLogSize;
- private int infoPlbm;
- private int warmPlbm;
- private int errorPlbm;
- public BisInspTaskTotal() {
- }
- public int getMendSize() {
- return mendSize;
- }
- public void setMendSize(int mendSize) {
- this.mendSize = mendSize;
- }
- public int getPblmLogSize() {
- return pblmLogSize;
- }
- public void setPblmLogSize(int pblmLogSize) {
- this.pblmLogSize = pblmLogSize;
- }
- public int getInfoPlbm() {
- return infoPlbm;
- }
- public void setInfoPlbm(int infoPlbm) {
- this.infoPlbm = infoPlbm;
- }
- public int getWarmPlbm() {
- return warmPlbm;
- }
- public void setWarmPlbm(int warmPlbm) {
- this.warmPlbm = warmPlbm;
- }
- public int getErrorPlbm() {
- return errorPlbm;
- }
- public void setErrorPlbm(int errorPlbm) {
- this.errorPlbm = errorPlbm;
- }
- public int getObjSize() {
- return objSize;
- }
- public void setObjSize(int objSize) {
- this.objSize = objSize;
- }
- public int getPblmSize() {
- return pblmSize;
- }
- public void setPblmSize(int pblmSize) {
- this.pblmSize = pblmSize;
- }
- }
|