yun-zuoyi
陈思洁 5 years ago
commit 01363fde23

@ -40,7 +40,7 @@ public class AndonRouteStatusErrorRecord extends BaseBean implements Serializabl
public String andonOrderNo; public String andonOrderNo;
@Column(name = "ERROR_DESC") @Column(name = "ERROR_DESC")
@ApiParam(value = "失败描述") @ApiParam(value = "异常描述")
public String errorDesc; public String errorDesc;
@Column(name = "WORK_CENTER_CODE") @Column(name = "WORK_CENTER_CODE")

@ -16,6 +16,7 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column; import javax.persistence.Column;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.Table; import javax.persistence.Table;
import javax.persistence.Transient;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.sql.JDBCType; import java.sql.JDBCType;
@ -122,11 +123,15 @@ public class FieldInfo extends BaseAPS {
private Boolean notEmpty; private Boolean notEmpty;
@JsonIgnore @JsonIgnore
@Transient
private transient Class<? extends BaseBean> clazz; private transient Class<? extends BaseBean> clazz;
@JsonIgnore @JsonIgnore
@Transient
private transient Class<?> typeClass; private transient Class<?> typeClass;
@JsonIgnore @JsonIgnore
@Transient
private transient Method getMethod; private transient Method getMethod;
@JsonIgnore @JsonIgnore
@Transient
private transient Method setMethod; private transient Method setMethod;
} }

@ -42,7 +42,7 @@ public class PtlRouteStatusErrorRecord extends BaseBean implements Serializable
private String taskNo; private String taskNo;
@Column(name = "ERROR_DESC") @Column(name = "ERROR_DESC")
@ApiParam(value = "失败描述") @ApiParam(value = "异常描述")
public String errorDesc; public String errorDesc;
@Column(name = "AREA_NO") @Column(name = "AREA_NO")

@ -202,6 +202,10 @@ dataSrc ="cn.estsh.i3plus.pojo.wms.bean.WmsZones",
@ApiParam(value = "库龄") @ApiParam(value = "库龄")
private String age; private String age;
@Transient
@ApiParam(value = "库位箱数")
private Long qty;
public WmsLocate() { public WmsLocate() {
} }
@ -252,6 +256,12 @@ dataSrc ="cn.estsh.i3plus.pojo.wms.bean.WmsZones",
this.z=z; this.z=z;
} }
public WmsLocate(Long qty, Integer status, String zoneNo) {
this.qty = qty;
this.status = status;
this.zoneNo = zoneNo;
}
public Integer getMaxPackageQty() { public Integer getMaxPackageQty() {
return this.maxPackageQty == null ? 0 : this.maxPackageQty.intValue(); return this.maxPackageQty == null ? 0 : this.maxPackageQty.intValue();
} }

@ -6,7 +6,7 @@ sonar.projectKey=i3plus.pojo:i3plus-pojo
# defaults to project key # defaults to project key
sonar.projectName=i3plus-pojo sonar.projectName=i3plus-pojo
# defaults to 'not provided' # defaults to 'not provided'
sonar.projectVersion=1.0-PROD-SNAPSHOT sonar.projectVersion=1.0-DEV-SNAPSHOT
# Path is relative to the sonar-project.properties file. Defaults to . # Path is relative to the sonar-project.properties file. Defaults to .
#sonar.sources=./ #sonar.sources=./

Loading…
Cancel
Save