BondingLotInfoInqRequestDto.java
package com.mycim.apis.eap.dto;
import java.io.Serializable;
/**
* @author Luopeng.Wang
* @version 6.0.0
* @date 2021/4/7
**/
public class BondingLotInfoInqRequestDto implements Serializable {
private String equipmentId;
private String topLotId;
private String topCarrierId;
private String bottomLotId;
private String bottomCarrierId;
private String targetCarrierId;
private Boolean byCarrierFlag;
public String getEquipmentId() {
return equipmentId;
}
public void setEquipmentId(String equipmentId) {
this.equipmentId = equipmentId;
}
public String getTopLotId() {
return topLotId;
}
public void setTopLotId(String topLotId) {
this.topLotId = topLotId;
}
public String getTopCarrierId() {
return topCarrierId;
}
public void setTopCarrierId(String topCarrierId) {
this.topCarrierId = topCarrierId;
}
public String getBottomLotId() {
return bottomLotId;
}
public void setBottomLotId(String bottomLotId) {
this.bottomLotId = bottomLotId;
}
public String getBottomCarrierId() {
return bottomCarrierId;
}
public void setBottomCarrierId(String bottomCarrierId) {
this.bottomCarrierId = bottomCarrierId;
}
public Boolean getByCarrierFlag() {
return byCarrierFlag;
}
public void setByCarrierFlag(Boolean byCarrierFlag) {
this.byCarrierFlag = byCarrierFlag;
}
public String getTargetCarrierId() {
return targetCarrierId;
}
public void setTargetCarrierId(String targetCarrierId) {
this.targetCarrierId = targetCarrierId;
}
}