| 123456789101112131415161718192021222324 |
- <?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.ydtech.modules.order.dao.InsAccidentalDrivingMapper">
- <resultMap id="BaseResultMap" type="com.ydtech.modules.order.entity.InsAccidentalDriving">
- <id property="id" column="id" jdbcType="INTEGER"/>
- <result property="rideRiskCode" column="ride_risk_code" jdbcType="INTEGER"/>
- <result property="rideRiskName" column="ride_risk_name" jdbcType="VARCHAR"/>
- <result property="seatNumMax" column="seat_num_max" jdbcType="INTEGER"/>
- <result property="seatNumMin" column="seat_num_min" jdbcType="INTEGER"/>
- <result property="maxNum" column="max_num" jdbcType="INTEGER"/>
- <result property="unitPremium" column="unit_premium" jdbcType="DECIMAL"/>
- <result property="insuranceAmount" column="insurance_amount" jdbcType="DECIMAL"/>
- <result property="companyCode" column="company_code" jdbcType="VARCHAR"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,ride_risk_code,ride_risk_name,
- seat_num_max,seat_num_min,max_num,
- unit_premium,insurance_amount
- </sql>
- </mapper>
|