package com.gkhy.safePlatform.equipment.entity;
|
|
|
import java.util.List;
|
|
public class MaterialReceiveRecordsBO {
|
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;
|
}
|
}
|