|
|
|
@ -5,16 +5,12 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
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.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -62,4 +58,12 @@ public class MesCustomerPart extends BaseBean implements Serializable {
|
|
|
|
|
@Column(name = "CUSTOMER_CFG_CODE")
|
|
|
|
|
@ApiParam("客户配置代码")
|
|
|
|
|
private String customerCfgCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CUSTOMER_MARK")
|
|
|
|
|
@ApiParam("客户代号")
|
|
|
|
|
private String customerMark;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CUSTOMER_LATCH")
|
|
|
|
|
@ApiParam("客户抬头")
|
|
|
|
|
private String customerLatch;
|
|
|
|
|
}
|
|
|
|
|