lyfO_o
2023-05-06 29f5825e22f8ed6cc2019511ad75a4939bafb6a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
    }
}