package com.gkhy.safePlatform.equipment.model.dto.req;
|
|
import javax.validation.constraints.NotNull;
|
import java.util.List;
|
|
public class MterialRandomDeliveryReq {
|
@NotNull(message = "主键不可为空!")
|
private Integer count;
|
@NotNull(message = "认领人不可为空!")
|
private Long claimantId;
|
|
@NotNull(message = "物资管理id不可为空!")
|
private Long smId;
|
|
private String rfid;
|
|
public Long getSmId() {
|
return smId;
|
}
|
|
public void setSmId(Long smId) {
|
this.smId = smId;
|
}
|
|
public Long getClaimantId() {
|
return claimantId;
|
}
|
|
public void setClaimantId(Long claimantId) {
|
this.claimantId = claimantId;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public String getRfid() {
|
return rfid;
|
}
|
|
public void setRfid(String rfid) {
|
this.rfid = rfid;
|
}
|
}
|