Merge remote-tracking branch 'origin/test' into test

yun-zuoyi
许心洁 5 years ago
commit 6005e2ab66

@ -0,0 +1,9 @@
package cn.estsh.i3plus.pojo.mes.repository;
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
import cn.estsh.i3plus.pojo.mes.bean.IfPackage;
import org.springframework.stereotype.Repository;
@Repository
public interface IfPackageRepository extends BaseRepository<IfPackage, Long> {
}

@ -0,0 +1,16 @@
package cn.estsh.i3plus.pojo.mes.repository;
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
import cn.estsh.i3plus.pojo.mes.bean.MesDefectLocation;
import org.springframework.stereotype.Repository;
/**
* @Description:
* @Reference:
* @Author: dominic
* @CreateDate:2020-11-25 19:51:00
* @Modify:
**/
@Repository
public interface MesDefectLocationRepository extends BaseRepository<MesDefectLocation, Long> {
}

@ -1,6 +1,7 @@
package cn.estsh.i3plus.pojo.sweb.bean;
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
@ -122,4 +123,8 @@ public class SwebPurchaseOrder extends BaseBean {
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiParam(value = "预计到货时间 结束时间")
private String expectedTimeEnd;
@Column(name = "IS_SYNC", nullable = false)
@ApiParam("是否同步")
public Integer isSync = CommonEnumUtil.FALSE;
}

@ -78,7 +78,7 @@ public class SwebPurchaseOrderDetails extends BaseBean {
@Column(name = "SNP_QTY")
@ColumnDefault("0")
@ApiParam(value = "默认包装规格", example = "0")
@ApiParam(value = "包装数量", example = "0")
private Double snpQty;
@Column(name = "PRINT_QTY")

@ -11,6 +11,7 @@ public class WmsInterfaceEnumUtil {
MES2WMS(30, "MES2WMS", "MES --> WMS"),
WMS2MES(40, "WMS2MES", "WMS --> MES"),
SWEB2WMS(50, "SWEB2WMS", "SWEB --> WMS"),
SWEB2SAP(50, "SWEB2SAP", "SWEB --> SAP"),
WMS2SWEB(50, "WMS2SWEB", "WMS --> SWEB"),
SAP2SWEB(50, "SAP2SWEB", "SAP --> SWEB");
@ -61,6 +62,7 @@ public class WmsInterfaceEnumUtil {
/**
* -1
*
* @param desc
* @return
*/

Loading…
Cancel
Save