liding
10 天以前 b3f5792c1778c919e6f839992b3a112208f9a22c
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
<?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.ruoyi.lims.mapper.ExperimentMapper">
    <resultMap id="BaseResultMap" type="com.ruoyi.lims.pojo.Experiment">
        <id column="id" property="id" />
                <result column="experiment_code" property="experimentCode" />
                <result column="experiment_name" property="experimentName" />
                <result column="experiment_type" property="experimentType" />
                <result column="experiment_standard" property="experimentStandard" />
                <result column="plan_start_date" property="planStartDate" />
                <result column="plan_end_date" property="planEndDate" />
                <result column="responsible_person" property="responsiblePerson" />
                <result column="experiment_status" property="experimentStatus" />
                <result column="experiment_purpose" property="experimentPurpose" />
                <result column="experiment_process" property="experimentProcess" />
                <result column="experiment_result" property="experimentResult" />
                <result column="maintainer" property="maintainer" />
                <result column="maintenance_time" property="maintenanceTime" />
                <result column="create_time" property="createTime" />
                <result column="update_time" property="updateTime" />
                <result column="remark" property="remark" />
                <result column="del_flag" property="delFlag" />
 
    </resultMap>
</mapper>