package com.gkhy.safePlatform.equipment.rpc.api.model.dto.req;
|
|
|
import java.util.List;
|
|
public class MaterialSpwRPCReq {
|
|
private Long claimantId;
|
|
private List<MaterialSpwDeliveryRPCReq> deliveryReqList;
|
|
public Long getClaimantId() {
|
return claimantId;
|
}
|
|
public void setClaimantId(Long claimantId) {
|
this.claimantId = claimantId;
|
}
|
|
public List<MaterialSpwDeliveryRPCReq> getDeliveryReqList() {
|
return deliveryReqList;
|
}
|
|
public void setDeliveryReqList(List<MaterialSpwDeliveryRPCReq> deliveryReqList) {
|
this.deliveryReqList = deliveryReqList;
|
}
|
}
|