Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
9f6c7867c4
@ -0,0 +1,54 @@
|
||||
package cn.estsh.i3plus.pojo.andon.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : 系统参数配置
|
||||
* @Reference :
|
||||
* @Author : siliter
|
||||
* @CreateDate : 2019-03-07 09:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="ANDON_PLC_COLOR_CFG")
|
||||
@Api(value="PLC三色灯控制")
|
||||
public class AndonPlcColorCfg extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -3284234821448131212L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name="RED_PLC_CODE")
|
||||
@ApiParam(value ="红灯PLC代码")
|
||||
private String redPlcCode;
|
||||
|
||||
@Column(name="YELLOW_PLC_CODE")
|
||||
@ApiParam(value ="黄灯PLC代码")
|
||||
private String yellowPlcCode;
|
||||
|
||||
@Column(name="GREEN_PLC_CODE")
|
||||
@ApiParam(value ="绿灯PLC代码")
|
||||
private String greenPlcCode;
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonActionModule;
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonPlcColorCfg;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-05-13 11:07
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonPlcColorCfgRepository extends BaseRepository<AndonPlcColorCfg, Long> {
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,69 @@
|
||||
package cn.estsh.i3plus.pojo.hardswitch.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2019-11-12 17:03
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class OpcUAParam {
|
||||
|
||||
//opc.tcp://127.0.0.1:49320
|
||||
@ApiParam("ua服务地址")
|
||||
private String serverUrl;
|
||||
|
||||
/**
|
||||
* 命名空间索引
|
||||
* 地址所在的 OPC UA 服务器命名空间的索引。
|
||||
*/
|
||||
@ApiParam("命名空间索引")
|
||||
private Integer namespaceIndex;
|
||||
|
||||
/**
|
||||
* 标记地址
|
||||
* 通道.设备.标记
|
||||
*/
|
||||
@ApiParam("标记地址")
|
||||
private String tagAddress;
|
||||
|
||||
/**
|
||||
* 标记值
|
||||
*/
|
||||
@ApiParam("标记值")
|
||||
private String tagValue;
|
||||
|
||||
/**
|
||||
* 标记值类型
|
||||
*/
|
||||
@ApiParam("标记值类型")
|
||||
// @AnnoOutputColumn(refClass = OpcUAEnumUtil.OPC_UA_TAG_VALUE_TYPE.class)
|
||||
private String tagValueType;
|
||||
public String getTagValueTypeVal(){
|
||||
return tagValueType == null ? "10" : tagValueType;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
@ApiParam("用户名")
|
||||
private String userName;
|
||||
|
||||
/**
|
||||
* 用户密码
|
||||
*/
|
||||
@ApiParam("用户密码")
|
||||
private String password;
|
||||
|
||||
/**
|
||||
* 请求间隔
|
||||
*/
|
||||
@ApiParam("请求间隔")
|
||||
private Double requestInterval = 500.0;
|
||||
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Index;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/9/23 18:47
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_EQU_ALARM_RECORD", indexes = {
|
||||
@Index(columnList = "WORK_CENTER_CODE")
|
||||
})
|
||||
@Api("设备自动报警记录表")
|
||||
public class MesEquAlarmRecord extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 1675134362612851879L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工位")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "ALARM_LEVEL")
|
||||
@ApiParam("报警等级")
|
||||
private Integer alarmLevel;
|
||||
|
||||
@Column(name = "ALARM_START_TIME")
|
||||
@ApiParam("报警开始时间")
|
||||
private String alarmStartTime;
|
||||
|
||||
@Column(name = "ALARM_STOP_TIME")
|
||||
@ApiParam("报警开始时间")
|
||||
private String alarmStopTime;
|
||||
}
|
Binary file not shown.
@ -0,0 +1,48 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 4:49 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_CUSTOM_PARAM_CFG")
|
||||
@Api("MES_看板自定义参数配置")
|
||||
public class MesBoardCustomParamCfg extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 3932883827194753734L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "PARAM_CODE")
|
||||
@ApiParam("参数代码")
|
||||
private String paramCode;
|
||||
|
||||
@Column(name = "PARAM_NAME")
|
||||
@ApiParam("参数名称")
|
||||
private String paramName;
|
||||
|
||||
@Column(name = "PARAM_VALUE")
|
||||
@ApiParam("参数值")
|
||||
private String paramValue;
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 4:47 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_CUSTOMER_DATA")
|
||||
@Api("MES_看板客户相关信息")
|
||||
public class MesBoardCustomerData extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 3871945569470777555L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "COMPLAIN_PLAN_QTY")
|
||||
@ApiParam("客户抱怨目标数量")
|
||||
private Integer complainPlanQty;
|
||||
|
||||
@Column(name = "COMPLAIN_ACTUAL_QTY")
|
||||
@ApiParam("客户抱怨实际数量")
|
||||
private Integer complainActualQty;
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate: 2020/10/13
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_IMAGE")
|
||||
@Api("MES_看板图片")
|
||||
public class MesBoardImage extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -3757764185082659130L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "IMAGE_URL")
|
||||
@ApiParam("图片路径")
|
||||
private String imageUrl;
|
||||
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\13 11:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_LINE")
|
||||
@Api("看板产线配置")
|
||||
public class MesBoardLine extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 5212593630787939081L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PLAN_OEE")
|
||||
@ApiParam("目标OEE")
|
||||
private Double planOee;
|
||||
|
||||
@Column(name = "PLAN_TAKT")
|
||||
@ApiParam("计划节拍")
|
||||
private Integer planTakt;
|
||||
|
||||
@Column(name = "PASS_PERCENT_MAX")
|
||||
@ApiParam("良品率上限")
|
||||
private Double passPercentMax;
|
||||
|
||||
@Column(name = "PASS_PERCENT_MIN")
|
||||
@ApiParam("良品率下限")
|
||||
private Double passPercentMin;
|
||||
|
||||
@Column(name = "CAR_RUN_TIME")
|
||||
@ApiParam("小车运行时间(分)")
|
||||
private Integer carRunTime;
|
||||
|
||||
@Column(name = "TEST_CAR_SUM")
|
||||
@ApiParam("调试车数")
|
||||
private Integer testCarSum;
|
||||
|
||||
@Column(name = "PLAN_FIRST_PASS_YIELD")
|
||||
@ApiParam("一次良品率目标值")
|
||||
private Double planFirstPassYield;
|
||||
|
||||
@Column(name = "PLAN_PASS_YIELD")
|
||||
@ApiParam("最终良品率目标值")
|
||||
private Double planPassYield;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : MES_看板工位信息
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-07 14:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_LINE_COORDS_MATRIX")
|
||||
@Api("MES_看板产线坐标")
|
||||
public class MesBoardLineCoordsMatrix extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -7823702941907604215L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "X_AXIS")
|
||||
@ApiParam("X坐标")
|
||||
private String xAxis;
|
||||
|
||||
@Column(name = "Y_AXIS")
|
||||
@ApiParam("Y坐标")
|
||||
private String yAxis;
|
||||
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : MES_看板工位信息
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-07 14:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_LINE_MATRIX")
|
||||
@Api("MES_看板产线矩阵")
|
||||
public class MesBoardLineMatrix extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 4414374274261870347L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PICTURE_URL")
|
||||
@ApiParam("产线图片路径")
|
||||
private String pictureUrl;
|
||||
|
||||
@Column(name = "USER_FIRST")
|
||||
@ApiParam("用户编号1")
|
||||
private String userFirst;
|
||||
|
||||
@Column(name = "USER_SECOND")
|
||||
@ApiParam("用户编号2")
|
||||
private String userSecond;
|
||||
|
||||
@Column(name = "USER_THIRD")
|
||||
@ApiParam("用户编号3")
|
||||
private String userThird;
|
||||
|
||||
@Column(name = "USER_FORTH")
|
||||
@ApiParam("用户编号4")
|
||||
private String userForth;
|
||||
|
||||
@Column(name = "USER_FIFTH")
|
||||
@ApiParam("用户编号5")
|
||||
private String userFifth;
|
||||
|
||||
@Column(name = "USER_SIXTH")
|
||||
@ApiParam("用户编号6")
|
||||
private String userSixth;
|
||||
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : MES_看板工位信息
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-07 14:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_LINE_STAFF_MATRIX")
|
||||
@Api("MES_看板产线员工能力矩阵")
|
||||
public class MesBoardLineStaffMatrix extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 1889056360071546259L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工位代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "USER_CODE")
|
||||
@ApiParam("员工编号")
|
||||
private String userCode;
|
||||
|
||||
@Column(name = "X_AXIS")
|
||||
@ApiParam("X坐标")
|
||||
private Double xAxis;
|
||||
|
||||
@Column(name = "Y_AXIS")
|
||||
@ApiParam("Y坐标")
|
||||
private Double yAxis;
|
||||
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : MES_看板麦格纳评定项
|
||||
* @Reference :
|
||||
* @Author : adair
|
||||
* @CreateDate : 2020-10-19 17:19
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_BOARD_MAFACT_ASSESSMENT")
|
||||
@Api("MES_看板麦格纳评定项")
|
||||
public class MesBoardMafactAssessment extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 7260899228359202210L;
|
||||
|
||||
@Column(name="BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name="ENG_ADV_QUALITY")
|
||||
@ApiParam("ENG_ADV_QUALITY")
|
||||
private String engAdvQuality;
|
||||
|
||||
@Column(name="MANAGEMENT")
|
||||
@ApiParam("MANAGEMENT")
|
||||
private String manageMent;
|
||||
|
||||
@Column(name="MAT_LOG_SUP")
|
||||
@ApiParam("MAT_LOG_SUP")
|
||||
private String matLogSup;
|
||||
|
||||
@Column(name="MFG_EXC")
|
||||
@ApiParam("MFG_EXC")
|
||||
private String mfgExc;
|
||||
|
||||
@Column(name="QUALITY")
|
||||
@ApiParam("QUALITY")
|
||||
private String quality;
|
||||
|
||||
@Column(name = "EHS")
|
||||
@ApiParam("EHS")
|
||||
private String ehs;
|
||||
|
||||
@Column(name = "COST")
|
||||
@ApiParam("COST")
|
||||
private String cost;
|
||||
|
||||
@Column(name = "HR")
|
||||
@ApiParam("HR")
|
||||
private String hr;
|
||||
|
||||
@Column(name = "JAN")
|
||||
@ApiParam("JAN")
|
||||
private String jan;
|
||||
|
||||
@Column(name = "FEB")
|
||||
@ApiParam("FEB")
|
||||
private String feb;
|
||||
|
||||
@Column(name = "MAR")
|
||||
@ApiParam("MAR")
|
||||
private String mar;
|
||||
|
||||
@Column(name = "APR")
|
||||
@ApiParam("APR")
|
||||
private String apr;
|
||||
|
||||
@Column(name = "MAY")
|
||||
@ApiParam("MAY")
|
||||
private String may;
|
||||
|
||||
@Column(name = "JUN")
|
||||
@ApiParam("JUN")
|
||||
private String jun;
|
||||
|
||||
@Column(name = "JUL")
|
||||
@ApiParam("JUL")
|
||||
private String jul;
|
||||
|
||||
@Column(name = "AUG")
|
||||
@ApiParam("AUG")
|
||||
private String aug;
|
||||
|
||||
@Column(name = "SEP")
|
||||
@ApiParam("SEP")
|
||||
private String sep;
|
||||
|
||||
@Column(name = "OCT")
|
||||
@ApiParam("OCT")
|
||||
private String oct;
|
||||
|
||||
@Column(name = "NOV")
|
||||
@ApiParam("NOV")
|
||||
private String nov;
|
||||
|
||||
@Column(name = "DEC")
|
||||
@ApiParam("DEC")
|
||||
private String dec;
|
||||
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 4:47 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_SUBMENU")
|
||||
@Api("MES_看板子菜单")
|
||||
public class MesBoardSubmenu extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 6544735793917822548L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "ITEM_NAME")
|
||||
@ApiParam("子项名称")
|
||||
private String itemName;
|
||||
|
||||
@Column(name = "ICON")
|
||||
@ApiParam("ICO图标")
|
||||
private String icon;
|
||||
|
||||
@Column(name = "SEQ")
|
||||
@ApiParam("顺序号")
|
||||
private Integer seq;
|
||||
|
||||
/**
|
||||
* 10-图片 20-视频
|
||||
*/
|
||||
@Column(name = "SHOW_TYPE")
|
||||
@ApiParam("展示类型")
|
||||
private Integer showType;
|
||||
|
||||
@Column(name = "PICTURE_URL")
|
||||
@ApiParam("图片路径")
|
||||
private String pictureUrl;
|
||||
|
||||
@Column(name = "VIDEO_URL")
|
||||
@ApiParam("视频路径")
|
||||
private String videoUrl;
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate: 2020/10/13
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_SWITCH_CFG")
|
||||
@Api("MES_看板切换配置")
|
||||
public class MesBoardSwitchCfg extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -9101785840595985385L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "SWITCH_INTERVAL")
|
||||
@ApiParam("屏切换频次")
|
||||
private Integer switchInterval;
|
||||
|
||||
@Column(name = "LINE_SWITCH_INTERVAL")
|
||||
@ApiParam("产线切换频次")
|
||||
private Integer lineSwitchInterval;
|
||||
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Index;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/9/11 14:29
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_CHECK_DATA_CFG", indexes = {
|
||||
@Index(columnList = "CHECK_CFG_NO")
|
||||
})
|
||||
@Api("检测数据源配置")
|
||||
public class MesCheckDataCfg extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -5608847087804566577L;
|
||||
|
||||
@Column(name = "OBJECT_CODE")
|
||||
@ApiParam("对象代码")
|
||||
private String objectCode;
|
||||
|
||||
@Column(name = "FIELD_CODE")
|
||||
@ApiParam("字段代码")
|
||||
private String fieldCode;
|
||||
|
||||
@Column(name = "CHECK_CFG_NO")
|
||||
@ApiParam("检测值配置编号")
|
||||
private String checkCfgNo;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Index;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/10/16 2:42 PM
|
||||
* @Description:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_EQU_ALARM_LOG", indexes = {
|
||||
@Index(columnList = "CREATE_DATE_TIME"),
|
||||
@Index(columnList = "WORK_CENTER_CODE")
|
||||
})
|
||||
@Api("设备自动报警日志")
|
||||
public class MesEquAlarmLog extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -494552645021304934L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "MESSAGE")
|
||||
@ApiParam("异常信息")
|
||||
private String message;
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :设备计划配置
|
||||
* @Reference :
|
||||
* @Author : Wynne.Lu
|
||||
* @CreateDate : 2020-10-15
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_EQU_TASK_PLAN_CFG")
|
||||
@Api("设备周期作业计划配置")
|
||||
public class MesEquTaskPlanCfg extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 7734079474434307857L;
|
||||
|
||||
@Column(name = "PLAN_CFG_CODE")
|
||||
@ApiParam("计划配置代码")
|
||||
private String planCfgCode;
|
||||
|
||||
@Column(name = "BACKGROUND_COLOR")
|
||||
@ApiParam("显示背景色")
|
||||
private String backgroundColor;
|
||||
|
||||
@Column(name = "COLOR")
|
||||
@ApiParam("字体颜色")
|
||||
private String color;
|
||||
|
||||
@Column(name = "CYCLE")
|
||||
@ApiParam("周期(天)")
|
||||
private Integer taskCycle;
|
||||
|
||||
@Column(name = "DISPLAY_TEXT")
|
||||
@ApiParam("显示文字")
|
||||
private String displayText;
|
||||
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.ColumnDefault;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Lob;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/4/18 21:05
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_EXCEPTION_ALERT_CFG")
|
||||
@Api("MES_异常提醒配置")
|
||||
public class MesExceptionAlertCfg extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -2733956307324895221L;
|
||||
|
||||
@Column(name = "SRC_MENU_CODE")
|
||||
@ApiParam("来源模块代码")
|
||||
private String srcMenuCode;
|
||||
|
||||
@Column(name = "SRC_MENU_NAME")
|
||||
@ApiParam("来源模块名称")
|
||||
private String srcMenuName;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "USER_CODE_GROUP")
|
||||
@ApiParam("提醒人员集合")
|
||||
private String userCodeGroup;
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/4/18 21:05
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_EXCEPTION_WINDOW_RECORD")
|
||||
@Api("MES_弹窗异常提醒记录")
|
||||
public class MesExceptionWindowRecord extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -2733956307324895345L;
|
||||
|
||||
@Column(name = "SRC_MENU_CODE")
|
||||
@ApiParam("来源模块代码")
|
||||
private String srcMenuCode;
|
||||
|
||||
@Column(name = "USER_CODE")
|
||||
@ApiParam("提醒人员")
|
||||
private String userCode;
|
||||
|
||||
@Column(name = "MESSAGE_TYPE")
|
||||
@ApiParam("消息类型")
|
||||
private Integer messageType;
|
||||
|
||||
@Column(name = "MESSAGE_HEAD")
|
||||
@ApiParam("提示表头")
|
||||
private String messageHead;
|
||||
|
||||
@Column(name = "MESSAGE_CONTENT")
|
||||
@ApiParam("提示内容")
|
||||
private String messageContent;
|
||||
|
||||
@Column(name = "STATUS")
|
||||
@ApiParam("处理状态")
|
||||
private Integer status;
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
package cn.estsh.i3plus.pojo.mes.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 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.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: jessica.chen
|
||||
* @CreateDate: 2019\11\15 10:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_GENERATE_QC_ORDER")
|
||||
@Api("待生成检验单")
|
||||
public class MesGenerateQcOrder extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 14873669015484197L;
|
||||
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("质检单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name = "IS_GENERATED")
|
||||
@ApiParam("是否生成了末检单")
|
||||
private Integer isGenerated = CommonEnumUtil.TRUE_OR_FALSE.FALSE.getValue();
|
||||
|
||||
@Column(name = "GENERATE_TIME")
|
||||
@ApiParam("生成时间")
|
||||
private String generateTime;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/10/27 13:29
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_LINE_FAULT_RECORD")
|
||||
@Api("产线故障记录表")
|
||||
public class MesLineFaultRecord extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 6108659377329720059L;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "EQU_NAME")
|
||||
@ApiParam("设备名称")
|
||||
private String equName;
|
||||
|
||||
@Column(name = "FAULT_TIME")
|
||||
@ApiParam("故障时长(分)")
|
||||
private Double faultTime;
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/9/29 17:25
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_LINE_OPERATION")
|
||||
@Api(value = "产线 开线或停线")
|
||||
public class MesLineOperation extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -710375930652577157L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工位")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "OBJECT_TYPE")
|
||||
@ApiParam("对象类型")
|
||||
private Integer objectType;
|
||||
|
||||
/**
|
||||
* MesDataSource dsCode 或者plcCode
|
||||
*/
|
||||
@Column(name = "OBJECT_CODE")
|
||||
@ApiParam("对象代码")
|
||||
private String objectCode;
|
||||
|
||||
@Column(name = "OP_TYPE")
|
||||
@ApiParam("操作类型 开线、停线")
|
||||
private Integer opType;
|
||||
|
||||
/**
|
||||
* 仅db jdbc 进行行更新 example:update a set b=:b
|
||||
*/
|
||||
@Column(name = "DB_OP_CMD")
|
||||
@ApiParam("db操作指令")
|
||||
private String dbOpCmd;
|
||||
|
||||
/**
|
||||
* 反写plc的值
|
||||
*/
|
||||
@Column(name = "PLC_OP_VALUE")
|
||||
@ApiParam("plc更新值")
|
||||
private String plcOpValue;
|
||||
}
|
@ -0,0 +1,57 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/4/18 21:05
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PCN_SYSTEM_CFG")
|
||||
@Api("MES_PCN_系统配置")
|
||||
public class MesPcnSystemCfg extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -2733956307324811596L;
|
||||
|
||||
@Column(name = "PCN_CODE")
|
||||
@ApiParam("PCN代码")
|
||||
private String pcnCode;
|
||||
|
||||
@Column(name = "SYS_NAME")
|
||||
@ApiParam("系统名称")
|
||||
private String sysName;
|
||||
|
||||
@Column(name = "COMPANY")
|
||||
@ApiParam("公司名称")
|
||||
private String company;
|
||||
|
||||
@Column(name = "SYS_LOG")
|
||||
@ApiParam("系统LOG")
|
||||
private String sysLog;
|
||||
|
||||
@Column(name = "MAIN_LOG")
|
||||
@ApiParam("主页LOG")
|
||||
private String mainLog;
|
||||
|
||||
@Column(name = "COPYRIGHT")
|
||||
@ApiParam("版权信息")
|
||||
private String copyright;
|
||||
|
||||
@Transient
|
||||
@ApiParam("LOG存放地址")
|
||||
private String logUrl;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue