|
|
@ -1,10 +1,14 @@
|
|
|
|
package cn.estsh.i3plus.pojo.wms.dbinterface;
|
|
|
|
package cn.estsh.i3plus.pojo.wms.dbinterface;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
|
@ -159,4 +163,14 @@ public class WmsInterfaceDataMapper extends BaseBean {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Column(name = "USE_SCRIPT_FILTER")
|
|
|
|
@Column(name = "USE_SCRIPT_FILTER")
|
|
|
|
public Integer useScriptFilter;
|
|
|
|
public Integer useScriptFilter;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 数据格式类型
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Column(name = "SOFT_DATA_TYPE")
|
|
|
|
|
|
|
|
@ApiParam(value = "数据格式类型")
|
|
|
|
|
|
|
|
@ColumnDefault("10")
|
|
|
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.SOFT_DATA_FORM.class, refForeignKey = "value", value = "description", required = false)
|
|
|
|
|
|
|
|
public Integer softDataType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|