CostIncomeGroupMapper.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.imed.costaccount.mapper.CostIncomeGroupMapper">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.imed.costaccount.model.CostIncomeGroup" id="costIncomeGroupMap">
  6. <result property="id" column="id"/>
  7. <result property="openDepartmentCode" column="open_department_code"/>
  8. <result property="openDepartmentName" column="open_department_name"/>
  9. <result property="openResponsibilityCode" column="open_responsibility_code"/>
  10. <result property="openResponsibilityName" column="open_responsibility_name"/>
  11. <result property="startDepartmentCode" column="start_department_code"/>
  12. <result property="startDepartmentName" column="start_department_name"/>
  13. <result property="startResponsibilityCode" column="start_responsibility_code"/>
  14. <result property="startResponsibilityName" column="start_responsibility_name"/>
  15. <result property="productCode" column="product_code"/>
  16. <result property="productName" column="product_name"/>
  17. <result property="accountCode" column="account_code"/>
  18. <result property="accountName" column="account_name"/>
  19. <result property="openDepartmentAmount" column="open_department_amount"/>
  20. <result property="startDepartmentAmount" column="start_department_amount"/>
  21. <result property="amount" column="amount"/>
  22. <result property="hospId" column="hosp_id"/>
  23. <result property="fileId" column="file_id"/>
  24. <result property="doctorNumber" column="doctor_number"/>
  25. <result property="doctorName" column="doctor_name"/>
  26. <result property="patientId" column="patient_id"/>
  27. <result property="outpatientId" column="outpatient_id"/>
  28. <result property="patientName" column="patient_name"/>
  29. <result property="patientFee" column="patient_fee"/>
  30. <result property="receiptFee" column="receipt_fee"/>
  31. <result property="totalNumber" column="total_number"/>
  32. <result property="unit" column="unit"/>
  33. <result property="feeDatetime" column="fee_datetime"/>
  34. <result property="dateYear" column="date_year"/>
  35. <result property="dateMonth" column="date_month"/>
  36. <result property="createTime" column="create_time"/>
  37. <result property="deleteTime" column="delete_time"/>
  38. </resultMap>
  39. </mapper>