Commit d26667350f58c45ff41338a12d269919b030b89a
1 parent
d792934b84
Exists in
master
and in
1 other branch
科室视图列表XML
Showing 1 changed file with 30 additions and 0 deletions
talkonlineweb/src/main/resources/mapper/HdepartInfoMapper.xml
View file @
d266673
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<!DOCTYPE mapper | |
3 | + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | |
4 | + "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | |
5 | +<mapper namespace="com.lyms.talkonlineweb.mapper.HdepartInfoMapper"> | |
6 | + | |
7 | + <resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.HdepartInfo"> | |
8 | + <result property="did" column="did" jdbcType="INTEGER"/> | |
9 | + <result property="dname" column="dname" jdbcType="VARCHAR"/> | |
10 | + <result property="hid" column="hid" jdbcType="INTEGER"/> | |
11 | + <result property="hname" column="hname" jdbcType="VARCHAR"/> | |
12 | + <result property="subcatalog" column="subcatalog" jdbcType="VARCHAR"/> | |
13 | + <result property="intro" column="intro" jdbcType="VARCHAR"/> | |
14 | + <result property="createdby" column="createdby" jdbcType="INTEGER"/> | |
15 | + <result property="creator" column="creator" jdbcType="VARCHAR"/> | |
16 | + <result property="createdtime" column="createdtime" jdbcType="TIMESTAMP"/> | |
17 | + <result property="updatedby" column="updatedby" jdbcType="INTEGER"/> | |
18 | + <result property="updatedTime" column="updated_time" jdbcType="TIMESTAMP"/> | |
19 | + <result property="uname" column="uname" jdbcType="VARCHAR"/> | |
20 | + <result property="htypename" column="htypename" jdbcType="VARCHAR"/> | |
21 | + </resultMap> | |
22 | + | |
23 | + <sql id="Base_Column_List"> | |
24 | + did,dname,hid, | |
25 | + hname,subcatalog,intro, | |
26 | + createdby,creator,createdtime, | |
27 | + updatedby,updated_time,uname, | |
28 | + htypename | |
29 | + </sql> | |
30 | +</mapper> |