From 0fcc6eb314fafab572def73100584d353089ee8c Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期六, 10 一月 2026 16:29:30 +0800 Subject: [PATCH] Merge branch 'dev_tide_sbjkxt' into dev_tide_sbjkxt_xindao --- src/main/resources/mapper/vehicleInformationCollectionReview/VehicleInformationCollectionReviewMapper.xml | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/vehicleInformationCollectionReview/VehicleInformationCollectionReviewMapper.xml b/src/main/resources/mapper/vehicleInformationCollectionReview/VehicleInformationCollectionReviewMapper.xml new file mode 100644 index 0000000..7478146 --- /dev/null +++ b/src/main/resources/mapper/vehicleInformationCollectionReview/VehicleInformationCollectionReviewMapper.xml @@ -0,0 +1,38 @@ +<?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.ruoyi.vehicleInformationCollectionReview.mapper.VehicleInformationCollectionReviewMapper"> + + <resultMap id="BaseResultMap" type="com.ruoyi.vehicleInformationCollectionReview.pojo.VehicleInformationCollectionReview"> + <id property="id" column="id" jdbcType="BIGINT"/> + <result property="plateNo" column="plate_no" jdbcType="VARCHAR"/> + <result property="plateColor" column="plate_color" jdbcType="VARCHAR"/> + <result property="carType" column="car_type" jdbcType="VARCHAR"/> + <result property="carVin" column="car_vin" jdbcType="VARCHAR"/> + <result property="carModel" column="car_model" jdbcType="VARCHAR"/> + <result property="engineModel" column="engine_model" jdbcType="VARCHAR"/> + <result property="engineProductFactory" column="engine_product_factory" jdbcType="VARCHAR"/> + <result property="engineNo" column="engine_no" jdbcType="VARCHAR"/> + <result property="emissionStandard" column="emission_standard" jdbcType="VARCHAR"/> + <result property="registeDate" column="registe_date" jdbcType="TIMESTAMP"/> + <result property="natureOfUse" column="nature_of_use" jdbcType="VARCHAR"/> + <result property="fuelType" column="fuel_type" jdbcType="VARCHAR"/> + <result property="reviewStatus" column="review_status" jdbcType="VARCHAR"/> + <result property="tenantId" column="tenant_id" jdbcType="INTEGER"/> + <result property="createUser" column="create_user" jdbcType="VARCHAR"/> + <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> + <result property="updateUser" column="update_user" jdbcType="VARCHAR"/> + <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/> + </resultMap> + + <sql id="Base_Column_List"> + id,plate_no,plate_color, + car_type,car_vin,car_model, + engine_model,engine_product_factory,engine_no, + emission_standard,registe_date,nature_of_use, + fuel_type,review_status,tenant_id, + create_user,create_time,update_user, + update_time + </sql> +</mapper> -- Gitblit v1.9.3