|
|
|
@ -2,6 +2,7 @@ package cn.estsh.i3plus.pojo.wms.modelbean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.WmsASNMasterDetails;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -9,10 +10,7 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -24,6 +22,10 @@ import java.util.List;
|
|
|
|
|
**/
|
|
|
|
|
@Data
|
|
|
|
|
@Api("单据明细Model")
|
|
|
|
|
@Entity
|
|
|
|
|
//以子类table为准
|
|
|
|
|
@javax.persistence.Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
|
|
|
|
|
@JsonInclude(value = JsonInclude.Include.NON_EMPTY) //""或null属性不参加序列转换
|
|
|
|
|
public class WmsOrderDetailsModel extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "PART_NO")
|
|
|
|
|