Merge remote-tracking branch 'remotes/origin/test'
commit
4ba7365e15
@ -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;
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class TJMgnBoardModel extends BaseBean {
|
||||
|
||||
@ApiParam("工单号")
|
||||
private String workOrderNo;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam("颜色")
|
||||
private String partColor;
|
||||
|
||||
@ApiParam("生产数量")
|
||||
private Double prodQty;
|
||||
|
||||
@ApiParam("一次合格数量")
|
||||
private Double firstQuQty;
|
||||
|
||||
@ApiParam("抛光数量")
|
||||
private Double polishQty;
|
||||
|
||||
@ApiParam("不合格数量")
|
||||
private Double noQuQty;
|
||||
|
||||
@ApiParam("一次合格率")
|
||||
private String firstPassRate;
|
||||
|
||||
@ApiParam("最终合格率")
|
||||
private String finalPassRate;
|
||||
|
||||
@ApiParam("不良处理类型")
|
||||
private String defectType;
|
||||
|
||||
@ApiParam("列名")
|
||||
private List<List<String>> headModelList;
|
||||
|
||||
@ApiParam("列值")
|
||||
private List<List<Double>> headValueModelList;
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesEquipment;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPcnSystemCfg;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPcnSystemCfgRepository extends BaseRepository<MesPcnSystemCfg, Long> {
|
||||
}
|
Loading…
Reference in New Issue