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

yun-zuoyi
puxiao.liao 5 years ago
commit 58fe5f61d8

@ -45,5 +45,5 @@ public class MesNumberSerialno extends BaseBean implements Serializable {
@Version @Version
@Column(name = "LOCK_VERSION") @Column(name = "LOCK_VERSION")
@ApiParam(value = "乐观锁", example = "1") @ApiParam(value = "乐观锁", example = "1")
public Integer lockVersion; public transient Integer lockVersion;
} }

@ -52,4 +52,12 @@ public class MesWorkCell extends BaseBean implements Serializable {
@Column(name = "SEQ") @Column(name = "SEQ")
@ApiParam("序号") @ApiParam("序号")
private Integer seq; private Integer seq;
@Column(name = "WORK_CELL_IP")
@ApiParam("工作单元IP")
private String workCellIp;
@Column(name = "WORK_CELL_PORT")
@ApiParam("工作单元端口")
private String workCellPort;
} }

@ -46,6 +46,11 @@ public class MesSyncDeadLetter extends BaseBean implements Serializable {
private String pcnCode; private String pcnCode;
@Lob @Lob
@Column(name = "EX_MSG")
@ApiParam("同步数据")
private String exMsg;
@Lob
@Column(name = "DATA") @Column(name = "DATA")
@ApiParam("同步数据") @ApiParam("同步数据")
private String data; private String data;

@ -57,6 +57,14 @@ public class MesWorkCell extends BaseBean implements Serializable {
@ApiParam("序号") @ApiParam("序号")
private Integer seq; private Integer seq;
@Column(name = "WORK_CELL_IP")
@ApiParam("工作单元IP")
private String workCellIp;
@Column(name = "WORK_CELL_PORT")
@ApiParam("工作单元端口")
private String workCellPort;
@Transient @Transient
@ApiParam(value = "子集列表") @ApiParam(value = "子集列表")
private List<MesEquipment> childTreeList; private List<MesEquipment> childTreeList;

@ -1,7 +1,6 @@
package cn.estsh.i3plus.pojo.platform.bean; package cn.estsh.i3plus.pojo.platform.bean;
import cn.estsh.i3plus.pojo.base.bean.BaseBean; import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import lombok.Data; import lombok.Data;
@ -30,6 +29,7 @@ import javax.persistence.Table;
public class SysTask extends BaseBean { public class SysTask extends BaseBean {
private static final long serialVersionUID = -4462661508105857312L; private static final long serialVersionUID = -4462661508105857312L;
@Column(name="NAME") @Column(name="NAME")
@ApiParam(value ="名称") @ApiParam(value ="名称")
private String name; private String name;

@ -718,6 +718,7 @@ public class CoreHqlPack {
HqlPack.getStringEqualPack(localeResource.getLanguageCode(),"languageCode",result); HqlPack.getStringEqualPack(localeResource.getLanguageCode(),"languageCode",result);
HqlPack.getStringEqualPack(localeResource.getResourceKey(),"resourceKey",result); HqlPack.getStringEqualPack(localeResource.getResourceKey(),"resourceKey",result);
HqlPack.getNumEqualPack(localeResource.getSoftType(),"softType",result);
HqlPack.getNumNOEqualPack(localeResource.getId(),"id",result); HqlPack.getNumNOEqualPack(localeResource.getId(),"id",result);
// 添加默认排序 // 添加默认排序

@ -247,6 +247,11 @@ public class WmsPart extends BaseBean {
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2) @DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
private Double cycleRquestQty = 0d; private Double cycleRquestQty = 0d;
@Column(name = "CURING_TIME")
@ApiParam(value = "固化时间", example = "0")
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
private Double curingTime = 0d;
public int getIqcVal(){ public int getIqcVal(){
return this.iqc == null ? 0 : this.iqc.intValue(); return this.iqc == null ? 0 : this.iqc.intValue();
} }
@ -274,6 +279,10 @@ public class WmsPart extends BaseBean {
return this.cycleRquestQty == null? 0d:this.cycleRquestQty.doubleValue(); return this.cycleRquestQty == null? 0d:this.cycleRquestQty.doubleValue();
} }
public Double getCuringTime() {
return this.curingTime == null? 0d:this.curingTime.doubleValue();
}
public WmsPart(String partNo, String partName, Double maxQty, Double minQty, Double cqty, String partType) { public WmsPart(String partNo, String partName, Double maxQty, Double minQty, Double cqty, String partType) {
this.partNo = partNo; this.partNo = partNo;

Loading…
Cancel
Save