<?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.ltkj.hosp.mapper.SysNoticeUserMapper">
|
|
<resultMap id="BaseResultMap" type="com.ltkj.hosp.domain.SysNoticeUser">
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
<result property="noticeId" column="notice_id" jdbcType="BIGINT"/>
|
<result property="userId" column="user_id" jdbcType="BIGINT"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
id,notice_id,user_id
|
</sql>
|
</mapper>
|