gaoaoy
2024-03-07 8816a5ef1bd1226969b15302fcb01a163f26348b
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
<?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.yuanchu.mom.mapper.InsOrderMapper">
 
    <resultMap id="BaseResultMap" type="com.yuanchu.mom.pojo.InsOrder">
            <id property="id" column="id" jdbcType="INTEGER"/>
            <result property="entrustCode" column="entrust_code" jdbcType="VARCHAR"/>
            <result property="sampleCode" column="sample_code" jdbcType="VARCHAR"/>
            <result property="orderingCustomers" column="ordering_customers" jdbcType="VARCHAR"/>
            <result property="orderingUnit" column="ordering_unit" jdbcType="VARCHAR"/>
            <result property="urgency" column="urgency" jdbcType="VARCHAR"/>
            <result property="appointedTime" column="appointed_time" jdbcType="TIMESTAMP"/>
            <result property="laboratoryName" column="laboratory_name" jdbcType="VARCHAR"/>
            <result property="sampleClassification" column="sample_classification" jdbcType="VARCHAR"/>
            <result property="model" column="model" jdbcType="VARCHAR"/>
            <result property="sample" column="sample" jdbcType="VARCHAR"/>
            <result property="numberSamples" column="number_samples" jdbcType="INTEGER"/>
            <result property="leaveSample" column="leave_sample" jdbcType="VARCHAR"/>
            <result property="retainedSamples" column="retained_samples" jdbcType="INTEGER"/>
            <result property="smapleType" column="smaple_type" jdbcType="VARCHAR"/>
            <result property="entrustCompany" column="entrust_company" jdbcType="VARCHAR"/>
            <result property="entrustName" column="entrust_name" jdbcType="VARCHAR"/>
            <result property="documentTime" column="document_time" jdbcType="TIMESTAMP"/>
            <result property="entrustmentTime" column="entrustment_time" jdbcType="TIMESTAMP"/>
            <result property="inspectionProgress" column="inspection_progress" jdbcType="VARCHAR"/>
            <result property="inspectionResult" column="inspection_result" jdbcType="VARCHAR"/>
            <result property="createUser" column="create_user" jdbcType="INTEGER"/>
            <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
            <result property="updateUser" column="update_user" jdbcType="INTEGER"/>
            <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,entrust_code,sample_code,
        ordering_customers,ordering_unit,urgency,
        appointed_time,laboratory_name,sample_classification,
        model,sample,number_samples,
        leave_sample,retained_samples,smaple_type,
        entrust_company,entrust_name,document_time,
        entrustment_time,inspection_progress,inspection_result,
        create_user,create_time,update_user,
        update_time
    </sql>
</mapper>