InsFeeOrder.xml 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.InsFeeOrderMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.order.entity.InsFeeOrder">
  7. <id property="id" column="id" jdbcType="VARCHAR"/>
  8. <result property="insOrderNo" column="ins_order_no" jdbcType="VARCHAR"/>
  9. <result property="agreementId" column="agreement_id" jdbcType="VARCHAR"/>
  10. <result property="jqCostsProportion" column="jq_costs_proportion" jdbcType="DECIMAL"/>
  11. <result property="syCostsProportion" column="sy_costs_proportion" jdbcType="DECIMAL"/>
  12. <result property="jqCostsPremiums" column="jq_costs_premiums" jdbcType="DECIMAL"/>
  13. <result property="syCostsPremiums" column="sy_costs_premiums" jdbcType="DECIMAL"/>
  14. <result property="jqPremium" column="jq_premium" jdbcType="DECIMAL"/>
  15. <result property="syPremium" column="sy_premium" jdbcType="DECIMAL"/>
  16. <result property="jqNoTaxPremium" column="jq_no_tax_premium" jdbcType="DECIMAL"/>
  17. <result property="syNoTaxPremium" column="sy_no_tax_premium" jdbcType="DECIMAL"/>
  18. <result property="jqSuperviseCostsProportion" column="jq_supervise_costs_proportion" jdbcType="DECIMAL"/>
  19. <result property="jqSuperviseCostsPremiums" column="jq_supervise_costs_premiums" jdbcType="DECIMAL"/>
  20. <result property="sySuperviseCostsProportion" column="sy_supervise_costs_proportion" jdbcType="DECIMAL"/>
  21. <result property="sySuperviseCostsPremiums" column="sy_supervise_costs_premiums" jdbcType="DECIMAL"/>
  22. <result property="jqSpilloverProportion" column="jq_spillover_proportion" jdbcType="DECIMAL"/>
  23. <result property="jqSpilloverPremiums" column="jq_spillover_premiums" jdbcType="DECIMAL"/>
  24. <result property="sySpilloverProportion" column="sy_spillover_proportion" jdbcType="DECIMAL"/>
  25. <result property="sySpilloverPremiums" column="sy_spillover_premiums" jdbcType="DECIMAL"/>
  26. <result property="firstDeptProportion" column="first_dept_proportion" jdbcType="DECIMAL"/>
  27. <result property="firstDeptPremiums" column="first_dept_premiums" jdbcType="DECIMAL"/>
  28. <result property="secondDeptProportion" column="second_dept_proportion" jdbcType="DECIMAL"/>
  29. <result property="secondDeptPremiums" column="second_dept_premiums" jdbcType="DECIMAL"/>
  30. <result property="thirdDeptProportion" column="third_dept_proportion" jdbcType="DECIMAL"/>
  31. <result property="thirdDeptPremiums" column="third_dept_premiums" jdbcType="DECIMAL"/>
  32. <result property="forthDeptProportion" column="forth_dept_proportion" jdbcType="DECIMAL"/>
  33. <result property="forthDeptPremiums" column="forth_dept_premiums" jdbcType="DECIMAL"/>
  34. <result property="fifthDeptProportion" column="fifth_dept_proportion" jdbcType="DECIMAL"/>
  35. <result property="fifthDeptPremiums" column="fifth_dept_premiums" jdbcType="DECIMAL"/>
  36. <result property="firstRetailProportion" column="first_detail_proportion" jdbcType="DECIMAL"/>
  37. <result property="firstRetailPremiums" column="first_detail_premiums" jdbcType="DECIMAL"/>
  38. <result property="secondRetailProportion" column="second_detail_proportion" jdbcType="DECIMAL"/>
  39. <result property="secondRetailPremiums" column="second_detail_premiums" jdbcType="DECIMAL"/>
  40. <result property="thirdRetailProportion" column="third_detail_proportion" jdbcType="DECIMAL"/>
  41. <result property="thirdRetailPremiums" column="third_detail_premiums" jdbcType="DECIMAL"/>
  42. <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
  43. </resultMap>
  44. <sql id="Base_Column_List">
  45. id,orderno,agreementId,jqPolicyNo,syPolicyNo,jqCostsProportion,syCostsProportion
  46. </sql>
  47. </mapper>