| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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.InsFeeOrderMapper">
- <resultMap id="BaseResultMap" type="com.ydtech.modules.order.entity.InsFeeOrder">
- <id property="id" column="id" jdbcType="VARCHAR"/>
- <result property="insOrderNo" column="ins_order_no" jdbcType="VARCHAR"/>
- <result property="agreementId" column="agreement_id" jdbcType="VARCHAR"/>
- <result property="jqCostsProportion" column="jq_costs_proportion" jdbcType="DECIMAL"/>
- <result property="syCostsProportion" column="sy_costs_proportion" jdbcType="DECIMAL"/>
- <result property="jqCostsPremiums" column="jq_costs_premiums" jdbcType="DECIMAL"/>
- <result property="syCostsPremiums" column="sy_costs_premiums" jdbcType="DECIMAL"/>
- <result property="jqPremium" column="jq_premium" jdbcType="DECIMAL"/>
- <result property="syPremium" column="sy_premium" jdbcType="DECIMAL"/>
- <result property="jqNoTaxPremium" column="jq_no_tax_premium" jdbcType="DECIMAL"/>
- <result property="syNoTaxPremium" column="sy_no_tax_premium" jdbcType="DECIMAL"/>
- <result property="jqSuperviseCostsProportion" column="jq_supervise_costs_proportion" jdbcType="DECIMAL"/>
- <result property="jqSuperviseCostsPremiums" column="jq_supervise_costs_premiums" jdbcType="DECIMAL"/>
- <result property="sySuperviseCostsProportion" column="sy_supervise_costs_proportion" jdbcType="DECIMAL"/>
- <result property="sySuperviseCostsPremiums" column="sy_supervise_costs_premiums" jdbcType="DECIMAL"/>
- <result property="jqSpilloverProportion" column="jq_spillover_proportion" jdbcType="DECIMAL"/>
- <result property="jqSpilloverPremiums" column="jq_spillover_premiums" jdbcType="DECIMAL"/>
- <result property="sySpilloverProportion" column="sy_spillover_proportion" jdbcType="DECIMAL"/>
- <result property="sySpilloverPremiums" column="sy_spillover_premiums" jdbcType="DECIMAL"/>
- <result property="firstDeptProportion" column="first_dept_proportion" jdbcType="DECIMAL"/>
- <result property="firstDeptPremiums" column="first_dept_premiums" jdbcType="DECIMAL"/>
- <result property="secondDeptProportion" column="second_dept_proportion" jdbcType="DECIMAL"/>
- <result property="secondDeptPremiums" column="second_dept_premiums" jdbcType="DECIMAL"/>
- <result property="thirdDeptProportion" column="third_dept_proportion" jdbcType="DECIMAL"/>
- <result property="thirdDeptPremiums" column="third_dept_premiums" jdbcType="DECIMAL"/>
- <result property="forthDeptProportion" column="forth_dept_proportion" jdbcType="DECIMAL"/>
- <result property="forthDeptPremiums" column="forth_dept_premiums" jdbcType="DECIMAL"/>
- <result property="fifthDeptProportion" column="fifth_dept_proportion" jdbcType="DECIMAL"/>
- <result property="fifthDeptPremiums" column="fifth_dept_premiums" jdbcType="DECIMAL"/>
- <result property="firstRetailProportion" column="first_detail_proportion" jdbcType="DECIMAL"/>
- <result property="firstRetailPremiums" column="first_detail_premiums" jdbcType="DECIMAL"/>
- <result property="secondRetailProportion" column="second_detail_proportion" jdbcType="DECIMAL"/>
- <result property="secondRetailPremiums" column="second_detail_premiums" jdbcType="DECIMAL"/>
- <result property="thirdRetailProportion" column="third_detail_proportion" jdbcType="DECIMAL"/>
- <result property="thirdRetailPremiums" column="third_detail_premiums" jdbcType="DECIMAL"/>
- <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,orderno,agreementId,jqPolicyNo,syPolicyNo,jqCostsProportion,syCostsProportion
- </sql>
- </mapper>
|