ShipQueryConditionDto.java
package com.mycim.valueobject.wip.dto;
import java.io.Serializable;
/**
* @Author: yibing.liu
* @Date: 2021/11/3 16:48
*/
public class ShipQueryConditionDto implements Serializable {
private Long productRrn;
private String lotType;
private String lotId;
private String lotStatus;
public Long getProductRrn() {
return productRrn;
}
public void setProductRrn(Long productRrn) {
this.productRrn = productRrn;
}
public String getLotType() {
return lotType;
}
public void setLotType(String lotType) {
this.lotType = lotType;
}
public String getLotId() {
return lotId;
}
public void setLotId(String lotId) {
this.lotId = lotId;
}
public String getLotStatus() {
return lotStatus;
}
public void setLotStatus(String lotStatus) {
this.lotStatus = lotStatus;
}
public boolean isEmpty() {
return productRrn == null && lotType == null && lotId == null && lotStatus == null;
}
}