Merge branch 'dev' of jhforever.wang/wangjie-i3plus-pojo into dev

yun-zuoyi
王杰 5 years ago committed by nancy.li
commit de9cb75cd7

@ -0,0 +1,32 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @author wangjie
* @date 2020/4/9 18:00
* @desc
*/
@Data
public class BypassModel {
@ApiParam("生产线")
private String workCenterCode;
@ApiParam("工位")
private String workCellCode;
@ApiParam("Bypass编码")
private String bypassCode;
@ApiParam("检测项")
private String businessValue;
@ApiParam("是否确认1=已确认2=未确认")
private String isVerify;
@ApiParam("生产数据ID")
private Long productDataId;
}

@ -12,6 +12,7 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.io.Serializable;
/**
@ -41,4 +42,12 @@ public class PtlAreaRoute extends BaseBean implements Serializable {
@Column(name = "ROUTE_TYPE")
@ApiParam("流程类型")
private Integer routeType;
@Transient
@ApiParam("区域代码")
private String areaName;
@Transient
@ApiParam("流程名称")
private String routeName;
}

Loading…
Cancel
Save