InsAccidentalDrivingMapper.xml 1.3 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ydtech.modules.order.dao.InsAccidentalDrivingMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.order.entity.InsAccidentalDriving">
  7. <id property="id" column="id" jdbcType="INTEGER"/>
  8. <result property="rideRiskCode" column="ride_risk_code" jdbcType="INTEGER"/>
  9. <result property="rideRiskName" column="ride_risk_name" jdbcType="VARCHAR"/>
  10. <result property="seatNumMax" column="seat_num_max" jdbcType="INTEGER"/>
  11. <result property="seatNumMin" column="seat_num_min" jdbcType="INTEGER"/>
  12. <result property="maxNum" column="max_num" jdbcType="INTEGER"/>
  13. <result property="unitPremium" column="unit_premium" jdbcType="DECIMAL"/>
  14. <result property="insuranceAmount" column="insurance_amount" jdbcType="DECIMAL"/>
  15. <result property="companyCode" column="company_code" jdbcType="VARCHAR"/>
  16. </resultMap>
  17. <sql id="Base_Column_List">
  18. id,ride_risk_code,ride_risk_name,
  19. seat_num_max,seat_num_min,max_num,
  20. unit_premium,insurance_amount
  21. </sql>
  22. </mapper>