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