zhangfeng
2022-11-21 99968f83982943669af3829ea6bc3bbe745cada4
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;
    }
}