You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
29 lines
1.4 KiB
4 months ago
|
<?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="digital.laboratory.platform.entrustment.mapper.EntrustMaterialCheckoutResultMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="digital.laboratory.platform.entrustment.entity.EntrustMaterialCheckoutResult">
|
||
|
<id property="id" column="entrust_material_id" jdbcType="VARCHAR"/>
|
||
|
<result property="qualitativeResult" column="qualitative_result" jdbcType="VARCHAR" typeHandler="com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler"/>
|
||
|
<result property="quantitativeResult" column="quantitative_result" jdbcType="VARCHAR"/>
|
||
|
<result property="otherResult" column="other_result" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
||
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
entrust_material_id,
|
||
|
qualitative_result,
|
||
|
quantitative_result,
|
||
|
other_result,
|
||
|
create_time,
|
||
|
create_by,
|
||
|
update_time,
|
||
|
update_by
|
||
|
</sql>
|
||
|
</mapper>
|