liujie
2023-05-22 9f2315d92cc93f8f431805a10ea9ce3f79fa7eb2
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
<?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.TPowerUnitsMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.system.model.TPowerUnits">
        <id column="id" property="id" />
        <result column="company_id" property="companyId" />
        <result column="make_model" property="makeModel" />
        <result column="engine_type" property="engineType" />
        <result column="fuel_type" property="fuelType" />
        <result column="license_plate" property="licensePlate" />
        <result column="vehicle_id_number" property="vehicleIdNumber" />
        <result column="insurance_information" property="insuranceInformation" />
        <result column="length" property="length" />
        <result column="height" property="height" />
        <result column="gross_vehicle_weight" property="grossVehicleWeight" />
        <result column="notes" property="notes" />
        <result column="power_unit_number" property="powerUnitNumber" />
        <result column="transmission_type" property="transmissionType" />
        <result column="horsepower" property="horsepower" />
        <result column="model_year" property="modelYear" />
        <result column="status" property="status" />
        <result column="registered_states" property="registeredStates" />
        <result column="width" property="width" />
        <result column="number_of_axles" property="numberOfAxles" />
        <result column="ownership" property="ownership" />
        <result column="purchased_or_leased" property="purchasedOrLeased" />
        <result column="purchased_from" property="purchasedFrom" />
        <result column="sold_to" property="soldTo" />
        <result column="purchase_amount" property="purchaseAmount" />
        <result column="purchase_dae" property="purchaseDae" />
        <result column="sola_date" property="solaDate" />
        <result column="factory_price" property="factoryPrice" />
        <result column="sold_amount" property="soldAmount" />
        <result column="current_value" property="currentValue" />
        <result column="license_plate_expiration" property="licensePlateExpiration" />
        <result column="dot_expiration" property="dotExpiration" />
        <result column="insurance_expiration" property="insuranceExpiration" />
        <result column="last_oil_change_date" property="lastOilChangeDate" />
        <result column="last_tuneup_date" property="lastTuneupDate" />
        <result column="last_service_date" property="lastServiceDate" />
        <result column="inspection_expriation" property="inspectionExpriation" />
        <result column="regustration_expiration" property="regustrationExpiration" />
        <result column="odometer_reading" property="odometerReading" />
        <result column="last_oil_change_mileage" property="lastOilChangeMileage" />
        <result column="last_tuneup_mileage" property="lastTuneupMileage" />
        <result column="last_service_mileage" property="lastServiceMileage" />
        <result column="create_time" property="createTime" />
        <result column="type" property="type" />
    </resultMap>
 
</mapper>