质量检测 1
parent
9bfd9ef279
commit
1e9f1a5c47
@ -0,0 +1,47 @@
|
|||||||
|
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.Index;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/9/11 14:29
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_CHECK_DATA_CFG", indexes = {
|
||||||
|
@Index(columnList = "CHECK_CFG_NO")
|
||||||
|
})
|
||||||
|
@Api("检测数据源配置")
|
||||||
|
public class MesCheckDataCfg extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = -5608847087804566577L;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_CODE")
|
||||||
|
@ApiParam("对象代码")
|
||||||
|
private String objectCode;
|
||||||
|
|
||||||
|
@Column(name = "FIELD_CODE")
|
||||||
|
@ApiParam("字段代码")
|
||||||
|
private String fieldCode;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_CFG_NO")
|
||||||
|
@ApiParam("检测值配置编号")
|
||||||
|
private String checkCfgNo;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue