|
@@ -0,0 +1,23 @@
|
|
|
|
+<?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.management.platform.mapper.FinanceFixedcolnameMapper">
|
|
|
|
+
|
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
|
+ <resultMap id="BaseResultMap" type="com.management.platform.entity.FinanceFixedcolname">
|
|
|
|
+ <id column="company_id" property="companyId" />
|
|
|
|
+ <result column="month_cost" property="monthCost" />
|
|
|
|
+ <result column="bonus" property="bonus" />
|
|
|
|
+ <result column="allowance" property="allowance" />
|
|
|
|
+ <result column="insurance_old" property="insuranceOld" />
|
|
|
|
+ <result column="insurance_medical" property="insuranceMedical" />
|
|
|
|
+ <result column="insurance_losejob" property="insuranceLosejob" />
|
|
|
|
+ <result column="insurance_injury" property="insuranceInjury" />
|
|
|
|
+ <result column="house_fund" property="houseFund" />
|
|
|
|
+ </resultMap>
|
|
|
|
+
|
|
|
|
+ <!-- 通用查询结果列 -->
|
|
|
|
+ <sql id="Base_Column_List">
|
|
|
|
+ company_id, month_cost, bonus, allowance, insurance_old, insurance_medical, insurance_losejob, insurance_injury, house_fund
|
|
|
|
+ </sql>
|
|
|
|
+
|
|
|
|
+</mapper>
|