Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
330cede03e
@ -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,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.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\10\16 15:03
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PLAN_TAKT")
|
||||
@Api("产线节拍表")
|
||||
public class MesPlanTakt extends BaseBean implements Serializable {
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PLAN_TAKT")
|
||||
@ApiParam("节拍")
|
||||
private Integer planTakt;
|
||||
|
||||
|
||||
}
|
@ -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/26
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_REAL_TIME_TAKT")
|
||||
@Api("MES_实时节拍")
|
||||
public class MesRealTimeTakt extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 2910474711746286558L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "REAL_TIME_TAKT")
|
||||
@ApiParam("实时节拍")
|
||||
private String realTimeTakt;
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :中航-每小时产量
|
||||
* @Reference :
|
||||
* @author: dominic
|
||||
* @date: 2020/10/23 13:46
|
||||
* @Modify:
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class MesBoardHourProductCountModel {
|
||||
@ApiParam("时间段")
|
||||
private String hour;
|
||||
|
||||
@ApiParam("计数")
|
||||
private Integer count;
|
||||
}
|
@ -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.MesBoardLine;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 8:53 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesBoardLineRepository extends BaseRepository<MesBoardLine, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPlanTakt;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\18 10:34
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesPlanTaktRepository extends BaseRepository<MesPlanTakt, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesRealTimeTakt;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate: 2020/10/26
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Repository
|
||||
public interface MesRealTimeTaktRepository extends BaseRepository<MesRealTimeTakt, Long> {
|
||||
}
|
Loading…
Reference in New Issue