Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
d36a7527a6
@ -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,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,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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description: MES控制计划-主表
|
||||
* @CreateDate: 2020/9/27
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_CONTROL_PLAN")
|
||||
@Api("中航控制计划主表")
|
||||
public class MesControlPlan extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1454433409471781390L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam("物料名称")
|
||||
private String partName;
|
||||
|
||||
@Column(name = "CUST_CODE")
|
||||
@ApiParam("客户代码")
|
||||
private String custCode;
|
||||
|
||||
@Column(name = "CUST_NAME")
|
||||
@ApiParam("客户名称")
|
||||
private String custName;
|
||||
|
||||
@Column(name = "VERSION")
|
||||
@ApiParam("版本号")
|
||||
private Integer version;
|
||||
|
||||
@Column(name = "AUDIT_TYPE")
|
||||
@ApiParam("审核状态")
|
||||
private Integer auditType;
|
||||
|
||||
@Column(name = "IS_ENABLE")
|
||||
@ApiParam("是否启用")
|
||||
private Integer isEnable;
|
||||
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate: 2020/9/29
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
public class MesControlPlanModel {
|
||||
|
||||
@ApiParam("控制计划主键ID")
|
||||
private Long id;
|
||||
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("物料编码")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
private String partName;
|
||||
|
||||
@ApiParam("客户代码")
|
||||
private String custCode;
|
||||
|
||||
@ApiParam("客户名称")
|
||||
private String custName;
|
||||
|
||||
@ApiParam("版本号")
|
||||
private Integer version;
|
||||
|
||||
@ApiParam("审核状态")
|
||||
private Integer auditType;
|
||||
|
||||
@ApiParam("是否启用")
|
||||
private Integer isEnable;
|
||||
|
||||
@ApiParam("质量标准数组")
|
||||
private List<MesQualityStandardModel> standardList;
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardCustomerData;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 8:53 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesBoardCustomerDataRepository extends BaseRepository<MesBoardCustomerData, Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardSubmenu;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 8:53 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesBoardSubMenuRepository extends BaseRepository<MesBoardSubmenu, Long> {
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesControlPlan;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate: 2020/9/27
|
||||
* @Author: simon.song
|
||||
*/
|
||||
public interface MesControlPlanRepository extends BaseRepository<MesControlPlan, Long> {
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesQualityStandard;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate: 2020/9/27
|
||||
* @Author: simon.song
|
||||
*/
|
||||
public interface MesQualityStandardRepository extends BaseRepository<MesQualityStandard, Long> {
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package cn.estsh.i3plus.pojo.model.softswitch;
|
||||
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitFile;
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitRecord;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-09-28 17:48
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("适配记录模型")
|
||||
public class SuitRecordModel {
|
||||
|
||||
@ApiModelProperty("主记录")
|
||||
private BsSuitRecord bsSuitRecord;
|
||||
|
||||
@ApiModelProperty("适配文件")
|
||||
private BsSuitFile bsSuitFile;
|
||||
|
||||
public SuitRecordModel() {
|
||||
}
|
||||
|
||||
public SuitRecordModel(BsSuitRecord bsSuitRecord, BsSuitFile bsSuitFile) {
|
||||
this.bsSuitRecord = bsSuitRecord;
|
||||
this.bsSuitFile = bsSuitFile;
|
||||
}
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package cn.estsh.i3plus.pojo.sweb.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;
|
||||
|
||||
/**
|
||||
* @Description : 供应商报警单
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-09-27
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Table(name = "SWEB_VENDOR_ALARM")
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("供应商报警单")
|
||||
public class SwebVendorAlarm extends BaseBean {
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料代码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam("物料名称")
|
||||
private String partName;
|
||||
|
||||
@Column(name = "VENDOR_CODE")
|
||||
@ApiParam("供应商代码")
|
||||
private String vendorCode;
|
||||
|
||||
@Column(name = "VENDOR_NAME")
|
||||
@ApiParam("供应商名称")
|
||||
private String vendorName;
|
||||
|
||||
@Column(name = "ALARM_CONTENT")
|
||||
@ApiParam("报警内容")
|
||||
private String alarmContent;
|
||||
|
||||
@Column(name = "ALARM_LEVEL")
|
||||
@ApiParam("报警级别")
|
||||
private Integer alarmLevel;
|
||||
|
||||
@Column(name = "STATUS")
|
||||
@ApiParam("状态")
|
||||
private Integer status;
|
||||
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("订单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name = "PART_SPEC")
|
||||
@ApiParam("物料描述")
|
||||
private String partSpec;
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package cn.estsh.i3plus.pojo.sweb.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.sweb.bean.SwebVendorAlarm;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface SwebVendorAlarmRepository extends BaseRepository<SwebVendorAlarm, Long> {
|
||||
}
|
Loading…
Reference in New Issue