puzhibing
2024-02-05 640ff18d2d7f4be02ddb7f8f75e899f05545eb98
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
<?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.dsh.course.mapper.TSiteMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.dsh.guns.modular.system.model.TSite">
        <id column="id" property="id"/>
        <result column="storeId" property="storeId"/>
        <result column="name" property="name"/>
        <result column="siteTypeId" property="siteTypeId"/>
        <result column="cityManagerId" property="cityManagerId"/>
        <result column="province" property="province"/>
        <result column="provinceCode" property="provinceCode"/>
        <result column="city" property="city"/>
        <result column="cityCode" property="cityCode"/>
        <result column="appointmentStartTime" property="appointmentStartTime"/>
        <result column="appointmentEndTime" property="appointmentEndTime"/>
        <result column="cashPrice" property="cashPrice"/>
        <result column="playPaiCoin" property="playPaiCoin"/>
        <result column="insuranceEndTime" property="insuranceEndTime"/>
        <result column="insuranceImg" property="insuranceImg"/>
        <result column="managementPlan" property="managementPlan"/>
        <result column="state" property="state"/>
        <result column="insertTime" property="insertTime"/>
    </resultMap>
</mapper>