|
|
|
@ -4,10 +4,6 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
@ -16,6 +12,8 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import javax.persistence.Version;
|
|
|
|
@ -93,6 +91,11 @@ public class WmsStockQuan extends BaseBean {
|
|
|
|
|
@ApiParam(value = "库位信息")
|
|
|
|
|
private WmsLocate wmsLocate;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "库位名称")
|
|
|
|
|
private String locateName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "QTY", columnDefinition = "decimal(18,8) default 0", nullable = false)
|
|
|
|
|
@ApiParam(value = "可用数量")
|
|
|
|
|