Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
27e4fc8ec2
@ -0,0 +1,54 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.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 : crish
|
||||||
|
* @CreateDate : 2019-06-04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="MES_CONFIG")
|
||||||
|
@Api("mes配置表")
|
||||||
|
public class MesConfig extends BaseBean {
|
||||||
|
@Column(name="CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String cfgCode;
|
||||||
|
|
||||||
|
@Column(name="CFG_NAME")
|
||||||
|
@ApiParam("配置名称")
|
||||||
|
private String cfgName;
|
||||||
|
|
||||||
|
@Column(name="CFG_TYPE")
|
||||||
|
@ApiParam("配置类型")
|
||||||
|
private String cfgType;
|
||||||
|
|
||||||
|
@Column(name="CFG_KEY")
|
||||||
|
@ApiParam("配置key")
|
||||||
|
private String cfgkey;
|
||||||
|
|
||||||
|
@Column(name="CFG_VALUE")
|
||||||
|
@ApiParam("配置value")
|
||||||
|
private String cfgValue;
|
||||||
|
|
||||||
|
@Column(name="CFG_VAULE_DESC")
|
||||||
|
@ApiParam("配置value描述")
|
||||||
|
private String cfgValueDesc;
|
||||||
|
}
|
@ -0,0 +1,71 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: Crish
|
||||||
|
* @CreateDate:2019-06-03-11:44
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
|
||||||
|
public class TorqueModel {
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
private Double upperLimit;
|
||||||
|
|
||||||
|
private Double lowerLimit;
|
||||||
|
|
||||||
|
private Double torqueValue;
|
||||||
|
|
||||||
|
private boolean ok;
|
||||||
|
|
||||||
|
private String color;
|
||||||
|
|
||||||
|
public boolean isOk() {
|
||||||
|
return ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOk(boolean ok) {
|
||||||
|
this.ok = ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getUpperLimit() {
|
||||||
|
return upperLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUpperLimit(Double upperLimit) {
|
||||||
|
this.upperLimit = (upperLimit == null ? 0 : upperLimit);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getLowerLimit() {
|
||||||
|
return lowerLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLowerLimit(Double lowerLimit) {
|
||||||
|
this.lowerLimit = (lowerLimit == null ? 0 : lowerLimit);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getTorqueValue() {
|
||||||
|
return torqueValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTorqueValue(Double torqueValue) {
|
||||||
|
this.torqueValue = (torqueValue == null ? 0 : torqueValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getColor() {
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setColor(String color) {
|
||||||
|
this.color = color;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesArea;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesConfig;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : crish
|
||||||
|
* @CreateDate : 2019-06-04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesConfigRepository extends BaseRepository<MesConfig, Long> {
|
||||||
|
}
|
@ -0,0 +1,54 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :配置表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : crish
|
||||||
|
* @CreateDate : 2019-06-04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="MES_CONFIG")
|
||||||
|
@Api("mes配置表")
|
||||||
|
public class MesConfig extends BaseBean {
|
||||||
|
@Column(name="CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String cfgCode;
|
||||||
|
|
||||||
|
@Column(name="CFG_NAME")
|
||||||
|
@ApiParam("配置名称")
|
||||||
|
private String cfgName;
|
||||||
|
|
||||||
|
@Column(name="CFG_TYPE")
|
||||||
|
@ApiParam("配置类型")
|
||||||
|
private String cfgType;
|
||||||
|
|
||||||
|
@Column(name="CFG_KEY")
|
||||||
|
@ApiParam("配置key")
|
||||||
|
private String cfgkey;
|
||||||
|
|
||||||
|
@Column(name="CFG_VALUE")
|
||||||
|
@ApiParam("配置value")
|
||||||
|
private String cfgValue;
|
||||||
|
|
||||||
|
@Column(name="CFG_VAULE_DESC")
|
||||||
|
@ApiParam("配置value描述")
|
||||||
|
private String cfgValueDesc;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesConfig;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : crish
|
||||||
|
* @CreateDate : 2019-06-04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesConfigRepository extends BaseRepository<MesConfig, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue