【需求:1189,产品条码工步】
parent
e30ba280e0
commit
f5c8e36ac9
@ -0,0 +1,51 @@
|
|||||||
|
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;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: wangjie
|
||||||
|
* @CreateDate:2019-04-16-17:36
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_PRODUCT_ENCODE_CFG")
|
||||||
|
@Api("产品编码配置表")
|
||||||
|
public class MesProductEncodeCfg extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 6641051790330191326L;
|
||||||
|
|
||||||
|
@Column(name = "CODE_TYPE")
|
||||||
|
@ApiParam("编码类型")
|
||||||
|
private Integer codeType;
|
||||||
|
|
||||||
|
@Column(name = "MATCH_TYPE")
|
||||||
|
@ApiParam("匹配类型")
|
||||||
|
private Integer matchType;
|
||||||
|
|
||||||
|
@Column(name = "MATCH_VALUE")
|
||||||
|
@ApiParam("匹配值")
|
||||||
|
private String matchValue;
|
||||||
|
|
||||||
|
@Column(name = "RULE_CODE")
|
||||||
|
@ApiParam("编码规则代码")
|
||||||
|
private String ruleCode;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
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.MesProductEncodeCfg;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: wangjie
|
||||||
|
* @CreateDate:2019-04-17-17:10
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesProductEncodeCfgRepository extends BaseRepository<MesProductEncodeCfg, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue