yun-zuoyi
yumingxing 4 years ago
commit 6319a1e81e

@ -111,6 +111,10 @@ public class MesProductData extends BaseBean implements Serializable {
@ApiParam("数据组号")
private String groupNo;
@Column(name = "MEMO")
@ApiParam("备注")
private String memo;
@Json4Es
@Lob
@Column(name = "LINE_DATA")

@ -24,7 +24,7 @@ public class ProduceDispPassPlatoQueryModel extends BaseBean {
*/
@ApiParam("工序")
private String processCode;
private List<String> processCodeList;
//质量状态20冻结30报废
@ApiParam("质量状态")
@ -40,7 +40,7 @@ public class ProduceDispPassPlatoQueryModel extends BaseBean {
//统计方式0按月1按天
@ApiParam("统计方式")
private Integer statisticalPlacer;
private Integer statisticalMethod;
@ApiParam("开始时间")
private String modifyStartDate;

@ -1,18 +1,15 @@
package cn.estsh.i3plus.pojo.sweb.bean;
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.ApiParam;
import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
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.*;
/**
* @Description :
@ -149,4 +146,8 @@ public class SwebDocMovementMaster extends BaseBean {
@Column(name = "SHIP_TIME")
@ApiParam(value = "发运时间")
private String shipTime;
@Column(name = "IS_SYNC", nullable = false)
@ApiParam("是否同步")
public Integer isSync = CommonEnumUtil.FALSE;
}

Loading…
Cancel
Save