【采购收货】
parent
695ab094d2
commit
e349ab3e9b
@ -0,0 +1,22 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 物料数量DTO
|
||||
*/
|
||||
@Data
|
||||
public class WmsPartQtyDto {
|
||||
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partName;
|
||||
@ApiParam(value = "物料编码")
|
||||
private String partNO;
|
||||
@ApiParam(value = "应收数量")
|
||||
private String qty;
|
||||
@ApiParam(value = "实收数量")
|
||||
private String rcQty;
|
||||
@ApiParam(value = "待收数量")
|
||||
private String dueQty;
|
||||
}
|
Loading…
Reference in New Issue