12345678910111213141516171819202122 |
- <?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.MedCheckInfoMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.diagbot.entity.MedCheckInfo">
- <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="behospital_code" property="behospitalCode" />
- <result column="hospital_id" property="hospitalId" />
- <result column="check_id" property="checkId" />
- <result column="check_name" property="checkName" />
- <result column="check_time" property="checkTime" />
- <result column="status" property="status" />
- <result column="check_type" property="checkType" />
- </resultMap>
- </mapper>
|