zhangf
2024-05-08 0414ddb0b2b3a7199ae6181a770f97ac140dbd73
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;
    }
}