BYPASS项映射关系表
parent
0a0727e2fa
commit
ba940f9a39
@ -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/9/6 1:25 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BYPASS_MAPPING")
|
||||
@Api("MES_BYPASS项映射关系")
|
||||
public class MesBypassMapping extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6362769913660089402L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "BYPASS_SEQ")
|
||||
@ApiParam("BYPASS项序号")
|
||||
private Integer bypassSeq;
|
||||
|
||||
@Column(name = "CHECK_NAME")
|
||||
@ApiParam("检测项描述")
|
||||
private String checkName;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBypassMapping;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/6 1:30 下午
|
||||
* @Modify:
|
||||
*/
|
||||
public interface MesBypassMappingRepository extends BaseRepository<MesBypassMapping, Long> {
|
||||
}
|
Loading…
Reference in New Issue