| 1234567891011121314151617181920212223242526272829303132333435 |
- <?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.protocol.dao.PtlNonCarInsuranceProductMapper">
- <resultMap id="BaseResultMap" type="com.ydtech.modules.protocol.entity.po.PtlNonCarInsuranceProduct">
- <id property="id" column="id" jdbcType="INTEGER"/>
- <result property="productCode" column="product_code" jdbcType="VARCHAR"/>
- <result property="productName" column="product_name" jdbcType="VARCHAR"/>
- <result property="companyId" column="company_id" jdbcType="VARCHAR"/>
- <result property="isEffective" column="is_effective" jdbcType="VARCHAR"/>
- <result property="insuranceCode" column="insurance_code" jdbcType="VARCHAR"/>
- <result property="nonCarInsuranceCode" column="non_car_insurance_code" jdbcType="VARCHAR"/>
- <result property="remark" column="remark" jdbcType="VARCHAR"/>
- <result property="validStartDate" column="valid_start_date" jdbcType="TIMESTAMP"/>
- <result property="validEndDate" column="valid_end_date" jdbcType="TIMESTAMP"/>
- <result property="insuranceNotice" column="insurance_notice" jdbcType="VARCHAR"/>
- <result property="insuranceInformation" column="insurance_information" jdbcType="VARCHAR"/>
- <result property="claimsGuidelines" column="claims_guidelines" jdbcType="VARCHAR"/>
- <result property="carKind" column="carkind" jdbcType="VARCHAR"/>
- <result property="useNature" column="usenature" jdbcType="VARCHAR"/>
- <result property="minSeatNum" column="min_seat_num" jdbcType="VARCHAR"/>
- <result property="maxSeatNum" column="max_seat_num" jdbcType="VARCHAR"/>
- <result property="minInsuredAge" column="min_insured_age" jdbcType="VARCHAR"/>
- <result property="maxInsuredAge" column="max_insured_age" jdbcType="VARCHAR"/>
- <result property="saveDate" column="save_date" jdbcType="TIMESTAMP"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,product_code,product_name,
- company_id,is_effective,insurance_code,
- non_car_insurance_code,remark
- </sql>
- </mapper>
|