UserAccountMapper.xml 748 B

123456789101112131415161718192021222324
  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.zsElectric.boot.business.mapper.UserAccountMapper">
  4. <!-- 获取个人账户分页列表 -->
  5. <select id="getUserAccountPage" resultType="com.zsElectric.boot.business.model.vo.UserAccountVO">
  6. SELECT
  7. id,
  8. user_id,
  9. balance,
  10. trade_code,
  11. amount_owed,
  12. create_time,
  13. create_by,
  14. update_time,
  15. update_by,
  16. is_deleted
  17. FROM
  18. c_user_account
  19. <where>
  20. </where>
  21. </select>
  22. </mapper>