<?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.system.dao.TbSellingCarMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.system.model.TbSellingCar">
|
<id column="id" property="id" />
|
<result column="userType" property="userType" />
|
<result column="userId" property="userId" />
|
<result column="title" property="title" />
|
<result column="brandId" property="brandId" />
|
<result column="brandName" property="brandName" />
|
<result column="category" property="category" />
|
<result column="carIdentificationCode" property="carIdentificationCode" />
|
<result column="carLicensePlate" property="carLicensePlate" />
|
<result column="carColor" property="carColor" />
|
<result column="licensingTime" property="licensingTime" />
|
<result column="mileage" property="mileage" />
|
<result column="describe" property="describe" />
|
<result column="describeImgUrl" property="describeImgUrl" />
|
<result column="contactsPhone" property="contactsPhone" />
|
<result column="contactsName" property="contactsName" />
|
<result column="provinceCode" property="provinceCode" />
|
<result column="cityCode" property="cityCode" />
|
<result column="provinceName" property="provinceName" />
|
<result column="cityName" property="cityName" />
|
<result column="createTime" property="createTime" />
|
<result column="status" property="status" />
|
<result column="addres" property="addres" />
|
<result column="authRemark" property="authRemark" />
|
<result column="imgUrl" property="imgUrl" />
|
<result column="videoUrl" property="videoUrl" />
|
<result column="locationOfLicensePlate" property="locationOfLicensePlate" />
|
<result column="transferTimes" property="transferTimes" />
|
<result column="displacement" property="displacement" />
|
<result column="transmissionCase" property="transmissionCase" />
|
<result column="level" property="level" />
|
<result column="transferPrice" property="transferPrice" />
|
<result column="includingTransferFee" property="includingTransferFee" />
|
<result column="newCarPrice" property="newCarPrice" />
|
<result column="dueTimeOfCompulsoryInsurance" property="dueTimeOfCompulsoryInsurance" />
|
<result column="expirationTimeOfAnnualInspection" property="expirationTimeOfAnnualInspection" />
|
<result column="maturityTimeOfCommercialInsurance" property="maturityTimeOfCommercialInsurance" />
|
<result column="mortgage" property="mortgage" />
|
<result column="installationConfiguration" property="installationConfiguration" />
|
<result column="remainingOperationTime" property="remainingOperationTime" />
|
<result column="operationUpdateTime" property="operationUpdateTime" />
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
<sql id="Base_Column_List">
|
id, userType, userId, title, brandId, brandName, category, carIdentificationCode, carLicensePlate, carColor, licensingTime, mileage, describe, describeImgUrl, contactsPhone, contactsName, provinceCode, cityCode, provinceName, cityName, createTime, status, addres, authRemark, imgUrl, videoUrl, locationOfLicensePlate, transferTimes, displacement, transmissionCase, level, transferPrice, includingTransferFee, newCarPrice, dueTimeOfCompulsoryInsurance, expirationTimeOfAnnualInspection, maturityTimeOfCommercialInsurance, mortgage, installationConfiguration, remainingOperationTime, operationUpdateTime
|
</sql>
|
|
</mapper>
|