|
@@ -0,0 +1,21 @@
|
|
|
|
+<?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.diagbot.mapper.DictionaryInfoMapper">
|
|
|
|
+
|
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
|
+ <resultMap id="BaseResultMap" type="com.diagbot.entity.DictionaryInfo">
|
|
|
|
+ <id column="id" property="id" />
|
|
|
|
+ <result column="is_deleted" property="isDeleted" />
|
|
|
|
+ <result column="gmt_create" property="gmtCreate" />
|
|
|
|
+ <result column="gmt_modified" property="gmtModified" />
|
|
|
|
+ <result column="creator" property="creator" />
|
|
|
|
+ <result column="modifier" property="modifier" />
|
|
|
|
+ <result column="group_type" property="groupType" />
|
|
|
|
+ <result column="name" property="name" />
|
|
|
|
+ <result column="val" property="val" />
|
|
|
|
+ <result column="return_type" property="returnType" />
|
|
|
|
+ <result column="order_no" property="orderNo" />
|
|
|
|
+ <result column="remark" property="remark" />
|
|
|
|
+ </resultMap>
|
|
|
|
+
|
|
|
|
+</mapper>
|