PtlNonCarInsuranceProductMapper.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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.protocol.dao.PtlNonCarInsuranceProductMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.protocol.entity.po.PtlNonCarInsuranceProduct">
  7. <id property="id" column="id" jdbcType="INTEGER"/>
  8. <result property="productCode" column="product_code" jdbcType="VARCHAR"/>
  9. <result property="productName" column="product_name" jdbcType="VARCHAR"/>
  10. <result property="companyId" column="company_id" jdbcType="VARCHAR"/>
  11. <result property="isEffective" column="is_effective" jdbcType="VARCHAR"/>
  12. <result property="insuranceCode" column="insurance_code" jdbcType="VARCHAR"/>
  13. <result property="nonCarInsuranceCode" column="non_car_insurance_code" jdbcType="VARCHAR"/>
  14. <result property="remark" column="remark" jdbcType="VARCHAR"/>
  15. <result property="validStartDate" column="valid_start_date" jdbcType="TIMESTAMP"/>
  16. <result property="validEndDate" column="valid_end_date" jdbcType="TIMESTAMP"/>
  17. <result property="insuranceNotice" column="insurance_notice" jdbcType="VARCHAR"/>
  18. <result property="insuranceInformation" column="insurance_information" jdbcType="VARCHAR"/>
  19. <result property="claimsGuidelines" column="claims_guidelines" jdbcType="VARCHAR"/>
  20. <result property="carKind" column="carkind" jdbcType="VARCHAR"/>
  21. <result property="useNature" column="usenature" jdbcType="VARCHAR"/>
  22. <result property="minSeatNum" column="min_seat_num" jdbcType="VARCHAR"/>
  23. <result property="maxSeatNum" column="max_seat_num" jdbcType="VARCHAR"/>
  24. <result property="minInsuredAge" column="min_insured_age" jdbcType="VARCHAR"/>
  25. <result property="maxInsuredAge" column="max_insured_age" jdbcType="VARCHAR"/>
  26. <result property="saveDate" column="save_date" jdbcType="TIMESTAMP"/>
  27. </resultMap>
  28. <sql id="Base_Column_List">
  29. id,product_code,product_name,
  30. company_id,is_effective,insurance_code,
  31. non_car_insurance_code,remark
  32. </sql>
  33. </mapper>