20250228 更新

1.添加检材性别字段
This commit is contained in:
2025-02-28 17:47:57 +08:00
parent e200924ce1
commit 31574de43d
2 changed files with 7 additions and 0 deletions

View File

@@ -556,6 +556,9 @@ public class EntrustmentIdentificationMaterial extends BaseEntity {
@ApiModelProperty(value = "生物检材类型, 目前区分毛发和尿液--贵阳新增需求") @ApiModelProperty(value = "生物检材类型, 目前区分毛发和尿液--贵阳新增需求")
private String biologyType; private String biologyType;
@ApiModelProperty(value = "生物检材类型, 目前区分毛发和尿液--贵阳新增需求")
private String biologyGender;
/*****************************************************************************************/ /*****************************************************************************************/
public String getOrderNo1() { public String getOrderNo1() {

View File

@@ -80,6 +80,10 @@
<result property="createBy" column="create_by"/> <result property="createBy" column="create_by"/>
<result property="updateTime" column="update_time"/> <result property="updateTime" column="update_time"/>
<result property="updateBy" column="update_by"/> <result property="updateBy" column="update_by"/>
<result property="materialAge" column="material_age"/>
<result property="imEntrustNumber" column="im_entrust_number"/>
<result property="biologyType" column="biology_type"/>
<result property="biologyGender" column="biology_gender"/>
</resultMap> </resultMap>
<resultMap id="entrustmentIdentificationMaterialVO" type="digital.laboratory.platform.entrustment.vo.EntrustmentIdentificationMaterialVO" extends="entrustmentIdentificationMaterialMap"> <resultMap id="entrustmentIdentificationMaterialVO" type="digital.laboratory.platform.entrustment.vo.EntrustmentIdentificationMaterialVO" extends="entrustmentIdentificationMaterialMap">