泰国电检
parent
66c627a698
commit
5a354229f7
@ -0,0 +1,59 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 泰国电检打印数据
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2021/6/16 14:15
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Inheritance(strategy = InheritanceType.JOINED)
|
||||||
|
@Table(name = "MES_ELECTROTESTING_PRINT_DATA")
|
||||||
|
@Api("MES_电检打印数据")
|
||||||
|
public class MesElectrotestingPrintData extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = 5179928838368157923L;
|
||||||
|
|
||||||
|
@Column(name = "COLOUR_CODE")
|
||||||
|
@ApiParam("颜色代码")
|
||||||
|
private String colourCode;
|
||||||
|
|
||||||
|
@Column(name = "VARIANT")
|
||||||
|
@ApiParam("型号")
|
||||||
|
private String variant;
|
||||||
|
|
||||||
|
@Column(name = "PRODUCTION_NUMBER")
|
||||||
|
@ApiParam("产品号")
|
||||||
|
private String productionNumber;
|
||||||
|
|
||||||
|
@Column(name = "COMMISSION_NUMBER")
|
||||||
|
@ApiParam("佣金号")
|
||||||
|
private String commissionNumber;
|
||||||
|
|
||||||
|
@Column(name = "QAD_NO")
|
||||||
|
@ApiParam("位置号")
|
||||||
|
private String qadNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PRINT_STATUS")
|
||||||
|
@ApiParam("打印状态")
|
||||||
|
private Integer printStatus = 10;
|
||||||
|
}
|
@ -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.MesElectrotestingPrintData;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 泰国电检打印数据
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2021/6/16 14:27
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesElectrotestingPrintDataRepository extends BaseRepository<MesElectrotestingPrintData, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue