|
|
|
@ -10,12 +10,8 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
import javax.persistence.Lob;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 库存移动单主表信息
|
|
|
|
@ -177,6 +173,22 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
@ApiParam("总行数")
|
|
|
|
|
private Long itemQty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("存储区")
|
|
|
|
|
private String zoneNo;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("仓库")
|
|
|
|
|
private String whNo;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("状态集合")
|
|
|
|
|
private List<Integer> orderStatusList;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("交易类型集合")
|
|
|
|
|
private List<String> transTypeCodeList;
|
|
|
|
|
|
|
|
|
|
// @Version
|
|
|
|
|
// @Column(name = "LOCK_VERSION")
|
|
|
|
|
// @ApiParam(value = "乐观锁", example = "1")
|
|
|
|
|