|  |  |  | 
|---|
|  |  |  | import com.bstek.dorado.annotation.PropertyDef; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.persistence.Column; | 
|---|
|  |  |  | import javax.persistence.Entity; | 
|---|
|  |  |  | import javax.persistence.Id; | 
|---|
|  |  |  | import javax.persistence.Table; | 
|---|
|  |  |  | import javax.persistence.*; | 
|---|
|  |  |  | import java.io.Serializable; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @Entity | 
|---|
|  |  |  | @Table(name = "D_CHECK_ITEM") | 
|---|
|  |  |  | @IdClass(Fz35CheckItemKey.class) | 
|---|
|  |  |  | public class Fz35CheckItem implements Serializable { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "检测编码") | 
|---|
|  |  |  | private String checkId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Id | 
|---|
|  |  |  | @Column(name = "COMPANY_ID_", length = 10) | 
|---|
|  |  |  | @PropertyDef(label = "组织编码") | 
|---|
|  |  |  | private String companyId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Id | 
|---|
|  |  |  | @Column(name = "STANDARD_ID_", length = 40) | 
|---|
|  |  |  | @PropertyDef(label = "检测项编码") | 
|---|
|  |  |  | private String standardId; | 
|---|