Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
29500d8762
@ -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> {
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
/**
|
||||
* @Description : 自动生成领料看板model
|
||||
* @Author : shun.cui
|
||||
* @CreateDate : 2020/12/17 10:34
|
||||
* @Modify :
|
||||
**/
|
||||
@Data
|
||||
@Api("自动生成领料看板")
|
||||
public class AutoPickingModel {
|
||||
@ApiParam("工厂名")
|
||||
private String organizeCode;
|
||||
@ApiParam("计划日期")
|
||||
private String planDate;
|
||||
@ApiParam("sap单号")
|
||||
private String erpSrcNo;
|
||||
@ApiParam("状态")
|
||||
private int orderStatus;
|
||||
@ApiParam("父零件号")
|
||||
private String partNo;
|
||||
@ApiParam("简称")
|
||||
private String partNameRdd;
|
||||
@ApiParam("完成数量")
|
||||
private Double printQty;
|
||||
@ApiParam("总数量")
|
||||
private Double qty;
|
||||
@ApiParam("操作时间")
|
||||
private String modifyDateTime;
|
||||
@ApiParam("操作人")
|
||||
private String modifyUser;
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 最低库存/最高库存 预警看板 Model
|
||||
* @Author : shun.cui
|
||||
* @CreateDate : 2020/12/17 10:55
|
||||
* @Modify :
|
||||
**/
|
||||
@Data
|
||||
@Api("最低库存/最高库存预警看板")
|
||||
public class MinAndMaxStockModel {
|
||||
@ApiParam("工厂名")
|
||||
private String organizeCode;
|
||||
@ApiParam("存储区")
|
||||
private String zoneNo;
|
||||
@ApiParam("库位")
|
||||
private String locateNo;
|
||||
@ApiParam("零件号")
|
||||
private String partNo;
|
||||
@ApiParam("简称")
|
||||
private String partNameAdd;
|
||||
@ApiParam("数量")
|
||||
private Double qty;
|
||||
@ApiParam("最低库存")
|
||||
private Double min;
|
||||
@ApiParam("最高库存")
|
||||
private Double max;
|
||||
@ApiParam("件号")
|
||||
private String partTypeDesc;
|
||||
@ApiParam("包装规格")
|
||||
private Double snp;
|
||||
|
||||
}
|
Loading…
Reference in New Issue