Merge remote-tracking branch 'origin/test' into test
commit
70b80068c2
@ -1,52 +0,0 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description :工位操作跳过记录表
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2020-12-24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Inheritance(strategy = InheritanceType.JOINED)
|
||||
@Table(name = "MES_WORK_CELL_JUMP_RECORD")
|
||||
@Api("mes工位操作跳过记录表")
|
||||
public class MesWorkCellJumpRecord extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 1017369816822438021L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "JUMP_TYPE")
|
||||
@ApiParam("跳过类型 10=过程条码")
|
||||
private Integer jumpType;
|
||||
|
||||
@Column(name = "JUMP_VALUE")
|
||||
@ApiParam("跳过值")
|
||||
private String jumpValue;
|
||||
|
||||
@Column(name = "JUMP_DESC")
|
||||
@ApiParam("跳过描述")
|
||||
private String jumpDesc;
|
||||
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellJumpRecord;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesWorkCellJumpRecordRepository extends BaseRepository<MesWorkCellJumpRecord, Long> {
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
package cn.estsh.i3plus.pojo.model.common;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description : Impp短信内容
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-24 20:31
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("Impp短信内容")
|
||||
public class ImppSmsContent implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 3329812596753451793L;
|
||||
|
||||
@ApiModelProperty(value = "软件模块")
|
||||
private Integer softType;
|
||||
|
||||
@ApiModelProperty(value = "接收手机号")
|
||||
private String receivePhoneNumber;
|
||||
|
||||
@ApiModelProperty(value = "短信签名代码")
|
||||
private String smsSignCode;
|
||||
|
||||
@ApiModelProperty(value = "模板代码")
|
||||
private String templateCode;
|
||||
|
||||
@ApiModelProperty(value = "短信参数")
|
||||
private Map<String, Object> paramMap;
|
||||
|
||||
}
|
@ -0,0 +1,128 @@
|
||||
package cn.estsh.i3plus.pojo.platform.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.ImppEnumUtil;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
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.Lob;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-13 16:13
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "SYS_SMS_SEND_RECORD")
|
||||
@ApiModel(value = "短信发送记录", description = "短信发送记录")
|
||||
public class SysSmsSendRecord extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = -3745690058553350416L;
|
||||
|
||||
/**
|
||||
* 发送回执ID
|
||||
*/
|
||||
@Column(name = "BIZ_ID")
|
||||
@ApiModelProperty(value = "回执id")
|
||||
private String bizId;
|
||||
|
||||
/**
|
||||
* 软件模块
|
||||
*/
|
||||
@Column(name = "SOFT_TYPE")
|
||||
@ApiModelProperty(value = "软件模块")
|
||||
private Integer softType;
|
||||
|
||||
/**
|
||||
* 接收手机号
|
||||
*/
|
||||
@Column(name = "RECEIVE_PHONE_NUMBER")
|
||||
@ApiModelProperty(value = "接收手机号")
|
||||
private String receivePhoneNumber;
|
||||
|
||||
/**
|
||||
* 模板代码
|
||||
*/
|
||||
@Column(name = "TEMPLATE_CODE")
|
||||
@ApiModelProperty(value = "模板代码")
|
||||
private String templateCode;
|
||||
|
||||
/**
|
||||
* 模板名称
|
||||
*/
|
||||
@Column(name = "TEMPLATE_NAME")
|
||||
@ApiModelProperty(value = "模板名称")
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 短信签名代码
|
||||
*/
|
||||
@Column(name = "SMS_SIGN_CODE")
|
||||
@ApiModelProperty(value = "短信签名代码")
|
||||
private String smsSignCode;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
@Column(name = "SMS_SIGN")
|
||||
@ApiModelProperty(value = "短信签名")
|
||||
private String smsSign;
|
||||
|
||||
/**
|
||||
* 短信内容
|
||||
*/
|
||||
@Column(name = "SMS_CONTENT")
|
||||
@ApiModelProperty(value = "短信内容")
|
||||
private String smsContent;
|
||||
|
||||
/**
|
||||
* 短信内容
|
||||
*/
|
||||
@Column(name = "SMS_Param", length = 1000)
|
||||
@ApiModelProperty(value = "短信参数")
|
||||
private String smsParam;
|
||||
|
||||
/**
|
||||
* 短信发送状态
|
||||
*/
|
||||
@AnnoOutputColumn(refClass = ImppEnumUtil.SMS_SEND_STATUS.class)
|
||||
@Column(name = "SMS_SEND_STATUS")
|
||||
@ApiModelProperty(value = "短信发送状态")
|
||||
private Integer smsSendStatus;
|
||||
|
||||
/**
|
||||
* 短信发送时间
|
||||
*/
|
||||
@Column(name = "SEND_DATE_TIME")
|
||||
@ApiModelProperty(value = "短信发送时间")
|
||||
private String sendDateTime;
|
||||
|
||||
/**
|
||||
* 短信接收日期和时间
|
||||
*/
|
||||
@Column(name = "RECEIVE_DATE_TIME")
|
||||
@ApiModelProperty(value = "短信接收日期和时间")
|
||||
private String receiveDateTime;
|
||||
|
||||
/**
|
||||
* 短信发送异常信息
|
||||
*/
|
||||
@Lob
|
||||
@Column(name = "SEND_ERR_MSG")
|
||||
@ApiModelProperty(value = "短信发送异常信息")
|
||||
private String sendErrMsg;
|
||||
}
|
@ -0,0 +1,54 @@
|
||||
package cn.estsh.i3plus.pojo.platform.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : 短信签名
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-13 16:09
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "SYS_SMS_SIGN")
|
||||
@ApiModel(value = "短信签名", description = "短信签名")
|
||||
public class SysSmsSign extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = -8979657974497978428L;
|
||||
|
||||
/**
|
||||
* 签名
|
||||
*/
|
||||
@Column(name = "SIGN_NAME")
|
||||
@ApiModelProperty(value = "签名")
|
||||
private String signName;
|
||||
|
||||
/**
|
||||
* 签名代码
|
||||
*/
|
||||
@Column(name = "SIGN_CODE")
|
||||
@ApiModelProperty(value = "签名代码")
|
||||
private String signCode;
|
||||
|
||||
/**
|
||||
* 签名描述
|
||||
*/
|
||||
@Column(name = "SIGN_DESC")
|
||||
@ApiModelProperty(value = "签名描述")
|
||||
private String signDesc;
|
||||
|
||||
}
|
@ -0,0 +1,101 @@
|
||||
package cn.estsh.i3plus.pojo.platform.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.ImppEnumUtil;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : 短信模板
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-13 16:11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "SYS_SMS_TEMPLATE")
|
||||
@ApiModel(value = "短信模板", description = "短信模板")
|
||||
public class SysSmsTemplate extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = -3879367761511016412L;
|
||||
|
||||
/**
|
||||
* 模板名称
|
||||
*/
|
||||
@Column(name = "TEMPLATE_NAME")
|
||||
@ApiModelProperty(value = "模板名称")
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 模板代码
|
||||
*/
|
||||
@Column(name = "TEMPLATE_CODE")
|
||||
@ApiModelProperty(value = "模板代码")
|
||||
private String templateCode;
|
||||
|
||||
/**
|
||||
* 模板代码
|
||||
*/
|
||||
@Column(name = "SUPPLIER_TEMPLATE_CODE")
|
||||
@ApiModelProperty(value = "模板代码")
|
||||
private String supplierTemplateCode;
|
||||
|
||||
/**
|
||||
* 模板类型
|
||||
*/
|
||||
@Column(name = "TEMPLATE_TYPE")
|
||||
@ApiModelProperty(value = "模板类型")
|
||||
private Integer templateType;
|
||||
|
||||
/**
|
||||
* 供应商类型
|
||||
*/
|
||||
@Column(name = "SUPPLIER_TYPE")
|
||||
@ApiModelProperty(value = "供应商类型")
|
||||
private Integer supplierType;
|
||||
|
||||
/**
|
||||
* 模板状态
|
||||
*/
|
||||
@Column(name = "TEMPLATE_STATUS")
|
||||
@ApiModelProperty(value = "模板状态")
|
||||
@AnnoOutputColumn(refClass = ImppEnumUtil.SMS_TEMPLATE_STATUS.class)
|
||||
private Integer templateStatus;
|
||||
|
||||
/**
|
||||
* 模板内容
|
||||
*/
|
||||
@Column(name = "TEMPLATE_CONTENT")
|
||||
@ApiModelProperty(value = "模板内容")
|
||||
private String templateContent;
|
||||
|
||||
/**
|
||||
* 模板描述
|
||||
*/
|
||||
@Column(name = "TEMPLATE_DESC")
|
||||
@ApiModelProperty(value = "模板描述")
|
||||
private String templateDesc;
|
||||
|
||||
|
||||
/**
|
||||
* 审批备注
|
||||
*/
|
||||
@Transient
|
||||
@ApiModelProperty(value = "审批备注")
|
||||
private String reason;
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.platform.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.platform.bean.SysSmsSendRecord;
|
||||
|
||||
/**
|
||||
* @Description : 短信发送记录
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-14 17:52
|
||||
* @Modify:
|
||||
**/
|
||||
public interface SysSmsSendRecordRepository extends BaseRepository<SysSmsSendRecord, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.platform.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.platform.bean.SysSmsSign;
|
||||
|
||||
/**
|
||||
* @Description : 短信签名
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-14 17:51
|
||||
* @Modify:
|
||||
**/
|
||||
public interface SysSmsSignRepository extends BaseRepository<SysSmsSign, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.platform.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.platform.bean.SysSmsTemplate;
|
||||
|
||||
/**
|
||||
* @Description : 短信模板
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-12-14 17:52
|
||||
* @Modify:
|
||||
**/
|
||||
public interface SysSmsTemplateRepository extends BaseRepository<SysSmsTemplate, Long> {
|
||||
}
|
Loading…
Reference in New Issue