Pu Zhibing
2025-08-04 178052e123c4706e78cd2ce09feba6f5df133eb5
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
<?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.stylefeng.guns.modular.shunfeng.dao.DriverRideMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.shunfeng.model.DriverRide">
        <id column="id" property="id" />
        <result column="addTime" property="addTime" />
        <result column="companyId" property="companyId" />
        <result column="carType" property="carType" />
        <result column="carNum" property="carNum" />
        <result column="license" property="license" />
        <result column="licenseImg" property="licenseImg" />
        <result column="comInsuranceTime" property="comInsuranceTime" />
        <result column="comInsuranceImg" property="comInsuranceImg" />
        <result column="businessInsuranceTime" property="businessInsuranceTime" />
        <result column="businessInsuranceImg" property="businessInsuranceImg" />
        <result column="dutyInsuranceTime" property="dutyInsuranceTime" />
        <result column="dutyInsuranceImg" property="dutyInsuranceImg" />
        <result column="annualInspectionTime" property="annualInspectionTime" />
        <result column="annualInspectionImg" property="annualInspectionImg" />
        <result column="userId" property="userId" />
        <result column="state" property="state" />
        <result column="byInviteCode" property="byInviteCode" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, addTime, companyId, carType, carNum, license, licenseImg, comInsuranceTime, comInsuranceImg, businessInsuranceTime, businessInsuranceImg, dutyInsuranceTime, dutyInsuranceImg, annualInspectionTime, annualInspectionImg, userId, state, byInviteCode
    </sql>
 
</mapper>