路泰机电科技体检——数据平台后端
zhaowenxuan
2025-06-19 e460e434fe3975a4ae33466710d8292245ad8e07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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.example.mapper.DictHospMapper">
 
    <resultMap id="BaseResultMap" type="com.example.domain.DictHosp">
            <id property="hospAreaId" column="hosp_area_id" jdbcType="VARCHAR"/>
            <result property="hospAreaName" column="hosp_area_name" jdbcType="VARCHAR"/>
            <result property="hospid" column="hospId" jdbcType="VARCHAR"/>
            <result property="hospName" column="hosp_name" jdbcType="VARCHAR"/>
            <result property="code" column="code" jdbcType="VARCHAR"/>
            <result property="wbm" column="wbm" jdbcType="VARCHAR"/>
            <result property="spell" column="spell" jdbcType="VARCHAR"/>
            <result property="areaid" column="areaId" jdbcType="VARCHAR"/>
            <result property="areaName" column="area_name" jdbcType="VARCHAR"/>
            <result property="mainHospArea" column="main_hosp_area" jdbcType="VARCHAR"/>
            <result property="principal" column="principal" jdbcType="VARCHAR"/>
            <result property="phone" column="phone" jdbcType="VARCHAR"/>
            <result property="plaitBed" column="plait_bed" jdbcType="INTEGER"/>
            <result property="openBed" column="open_bed" jdbcType="INTEGER"/>
            <result property="buildDate" column="build_date" jdbcType="DATE"/>
            <result property="remark" column="remark" jdbcType="VARCHAR"/>
            <result property="createBy" column="create_by" jdbcType="VARCHAR"/>
            <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
            <result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
            <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
            <result property="orderNum" column="order_num" jdbcType="INTEGER"/>
            <result property="effective" column="effective" jdbcType="VARCHAR"/>
            <result property="createByName" column="create_by_name" jdbcType="VARCHAR"/>
            <result property="updateByName" column="update_by_name" jdbcType="VARCHAR"/>
            <result property="deleted" column="deleted" jdbcType="TINYINT"/>
            <result property="createId" column="create_id" jdbcType="VARCHAR"/>
            <result property="updateId" column="update_id" jdbcType="VARCHAR"/>
            <result property="secretKey" column="secret_key" jdbcType="VARCHAR"/>
            <result property="expirationTime" column="expiration_time" jdbcType="TIMESTAMP"/>
            <result property="dbname" column="dbname" jdbcType="VARCHAR"/>
            <result property="beanName" column="bean_name" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        hosp_area_id,hosp_area_name,hospId,
        hosp_name,code,wbm,
        spell,areaId,area_name,
        main_hosp_area,principal,phone,
        plait_bed,open_bed,build_date,
        remark,create_by,create_time,
        update_by,update_time,order_num,
        effective,create_by_name,update_by_name,
        deleted,create_id,update_id,
        secret_key,expiration_time,dbname,
        bean_name,imgBase64
    </sql>
</mapper>