package com.gkhy.safePlatform.equipment.rpc.api.model.dto.req;
|
|
|
import java.util.List;
|
|
public class MaterialReceiveRecordsRPCReq {
|
private List<Long> receiveUids;
|
private List<Long> smallClassifyIds;
|
|
public List<Long> getReceiveUids() {
|
return receiveUids;
|
}
|
|
public void setReceiveUids(List<Long> receiveUids) {
|
this.receiveUids = receiveUids;
|
}
|
|
public List<Long> getSmallClassifyIds() {
|
return smallClassifyIds;
|
}
|
|
public void setSmallClassifyIds(List<Long> smallClassifyIds) {
|
this.smallClassifyIds = smallClassifyIds;
|
}
|
}
|