123456789101112131415161718192021222324 |
- <?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.imed.costaccount.mapper.ResponsibilityMapper">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.imed.costaccount.model.Responsibility" id="responsibilityMap">
- <result property="id" column="id"/>
- <result property="responsibilityName" column="responsibility_name"/>
- <result property="responsibilityCode" column="responsibility_code"/>
- <result property="parentId" column="parent_id"/>
- <result property="hospId" column="hosp_id"/>
- <result property="isGatherCenter" column="is_gather_center"/>
- <result property="responsibilityType" column="responsibility_type"/>
- <result property="shareId" column="share_id"/>
- <result property="isDefault" column="is_default" />
- <result property="shareLevel" column="share_level"/>
- <result property="shareName" column="share_name"/>
- <result property="createTime" column="create_time"/>
- <result property="deleteTime" column="delete_time"/>
- </resultMap>
- </mapper>
|