|
@@ -13,7 +13,6 @@ import lombok.EqualsAndHashCode;
|
|
|
public class SampleCheckItemSerum extends BaseEntity {
|
|
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
- @Schema(description = "主键ID")
|
|
|
private Integer id;
|
|
|
|
|
|
@Schema(description = "送检申请单id")
|
|
@@ -25,23 +24,41 @@ public class SampleCheckItemSerum extends BaseEntity {
|
|
|
@Schema(description = "样本编号后缀")
|
|
|
private String codeSuffix;
|
|
|
|
|
|
- @Schema(description = "样本类型")
|
|
|
- private String type;
|
|
|
+ @Schema(description = "lis样本类型id")
|
|
|
+ private Integer lisSampleTypeId;
|
|
|
|
|
|
- @Schema(description = "性别")
|
|
|
- private String sex;
|
|
|
+ @Schema(description = "lis样本类型")
|
|
|
+ private String lisSampleTypeName;
|
|
|
+
|
|
|
+ @Schema(description = "lis性别id")
|
|
|
+ private Integer lisSexId;
|
|
|
+
|
|
|
+ @Schema(description = "lis性别")
|
|
|
+ private String lisSexName;
|
|
|
|
|
|
@Schema(description = "年龄")
|
|
|
private String age;
|
|
|
|
|
|
- @Schema(description = "动物种类")
|
|
|
- private String animalSpecies;
|
|
|
+ @Schema(description = "lis动物种类id")
|
|
|
+ private Integer lisPetTypeId;
|
|
|
+
|
|
|
+ @Schema(description = "lis动物种类")
|
|
|
+ private String lisPetTypeName;
|
|
|
+
|
|
|
+ @Schema(description = "lis科室id,HT_INFO_DEP")
|
|
|
+ private Integer lisDepId;
|
|
|
+
|
|
|
+ @Schema(description = "lis专业组id,HT_INFO_PROF")
|
|
|
+ private Integer lisProfId;
|
|
|
+
|
|
|
+ @Schema(description = "lis专业组")
|
|
|
+ private String lisProfName;
|
|
|
|
|
|
- @Schema(description = "专业组")
|
|
|
- private String professionalGroup;
|
|
|
+ @Schema(description = "lis仪器id,HT_INFO_MACHINE")
|
|
|
+ private Integer lisMachineId;
|
|
|
|
|
|
- @Schema(description = "仪器名称")
|
|
|
- private String instrument;
|
|
|
+ @Schema(description = "lis仪器")
|
|
|
+ private String lisMachineName;
|
|
|
|
|
|
@Schema(description = "检测指标")
|
|
|
private String target;
|