|
|
|
@ -1,7 +1,6 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.modelbean.WmsOrderDetailsModel;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -27,7 +26,30 @@ import javax.persistence.Table;
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Table(name = "WMS_DOC_PO_DETAILS")
|
|
|
|
|
@Api("PO订单明细信息")
|
|
|
|
|
public class WmsPOMasterDetails extends WmsOrderDetailsModel {
|
|
|
|
|
public class WmsPOMasterDetails extends BaseBean {
|
|
|
|
|
@Column(name = "PART_NO")
|
|
|
|
|
@ApiParam("物料编码")
|
|
|
|
|
public String partNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PART_NAME_RDD")
|
|
|
|
|
@ApiParam("物料名称")
|
|
|
|
|
public String partNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ITEM")
|
|
|
|
|
@ApiParam("行号")
|
|
|
|
|
public Integer item;
|
|
|
|
|
|
|
|
|
|
@Column(name = "QTY")
|
|
|
|
|
@ApiParam(value = "需求数量", example = "0")
|
|
|
|
|
public Double qty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "UNIT")
|
|
|
|
|
@ApiParam("单位")
|
|
|
|
|
public String unit;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ORDER_NO")
|
|
|
|
|
@ApiParam("订单号")
|
|
|
|
|
public String orderNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PRINT_QTY")
|
|
|
|
|
@ApiParam(value = "条码打印数量", example = "0")
|
|
|
|
|