zhaowenxuan
2025-03-19 5c0acd20aa9d85aad3022df3453af932a53678eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ltkj.hosp.mapper.WsImportResultGroupMapper">
 
    <resultMap id="BaseResultMap" type="com.ltkj.hosp.domain.WsImportResultGroup">
            <id property="id" column="id" jdbcType="BIGINT"/>
            <result property="sampleNo" column="sample_no" jdbcType="VARCHAR"/>
            <result property="hosCode" column="hos_code" jdbcType="VARCHAR"/>
            <result property="hosAnalysisCode" column="hos_analysis_code" jdbcType="VARCHAR"/>
            <result property="daTestCode" column="da_test_code" jdbcType="VARCHAR"/>
            <result property="daTestItem" column="da_test_item" jdbcType="VARCHAR"/>
            <result property="daAnalysisCode" column="da_analysis_code" jdbcType="VARCHAR"/>
            <result property="daAnalysisName" column="da_analysis_name" jdbcType="VARCHAR"/>
            <result property="daAnalysisShorter" column="da_analysis_shorter" jdbcType="VARCHAR"/>
            <result property="refRange" column="ref_range" jdbcType="VARCHAR"/>
            <result property="final" column="final" jdbcType="VARCHAR"/>
            <result property="finalLongText" column="final_long_text" jdbcType="VARCHAR"/>
            <result property="approver" column="approver" jdbcType="VARCHAR"/>
            <result property="approveTime" column="approve_time" jdbcType="TIMESTAMP"/>
            <result property="examiner" column="examiner" jdbcType="VARCHAR"/>
            <result property="examineTime" column="examine_time" jdbcType="TIMESTAMP"/>
            <result property="testDate" column="test_date" jdbcType="TIMESTAMP"/>
            <result property="samplingDate" column="sampling_date" jdbcType="TIMESTAMP"/>
            <result property="resultType" column="result_type" jdbcType="INTEGER"/>
            <result property="patientName" column="patient_name" jdbcType="VARCHAR"/>
            <result property="outPatientNo" column="out_patient_no" jdbcType="VARCHAR"/>
            <result property="refRangeUpper" column="ref_range_upper" jdbcType="VARCHAR"/>
            <result property="refRangeLower" column="ref_range_lower" jdbcType="VARCHAR"/>
            <result property="units" column="units" jdbcType="VARCHAR"/>
            <result property="dangerFlag" column="danger_flag" jdbcType="VARCHAR"/>
            <result property="serviceGroup" column="service_group" jdbcType="VARCHAR"/>
            <result property="dapartment" column="dapartment" jdbcType="VARCHAR"/>
            <result property="sampleType" column="sample_type" jdbcType="VARCHAR"/>
            <result property="clinicalContent" column="clinical_content" jdbcType="VARCHAR"/>
            <result property="rnLhFlag" column="rn_lh_flag" jdbcType="VARCHAR"/>
            <result property="rnArrowFlag" column="rn_arrow_flag" jdbcType="VARCHAR"/>
            <result property="comments" column="comments" jdbcType="VARCHAR"/>
            <result property="finalRecodeSet" column="final_recode_set" jdbcType="VARCHAR"/>
            <result property="isRead" column="is_read" jdbcType="INTEGER"/>
            <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
            <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,sample_no,hos_code,
        hos_analysis_code,da_test_code,da_test_item,
        da_analysis_code,da_analysis_name,da_analysis_shorter,
        ref_range,final,final_long_text,
        approver,approve_time,examiner,
        examine_time,test_date,sampling_date,
        result_type,patient_name,out_patient_no,
        ref_range_upper,ref_range_lower,units,
        danger_flag,service_group,dapartment,
        sample_type,clinical_content,rn_lh_flag,
        rn_arrow_flag,comments,final_recode_set,
        is_read,create_time,update_time
    </sql>
</mapper>