TenantUnbindHistoryMapper.xml 988 B

1234567891011121314151617181920212223242526272829
  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.yonge.cooleshow.biz.dal.mapper.TenantUnbindHistoryMapper">
  4. <!-- 表字段 -->
  5. <sql id="baseColumns">
  6. t.id_ AS id
  7. , t.tenant_id_ AS tenantId
  8. , t.tenant_name_ AS tenantName
  9. , t.user_id_ AS userId
  10. , t.user_name_ AS userName
  11. , t.phone_ AS phone
  12. , t.user_type_ AS userType
  13. , t.unbind_reason_ AS unbindReason
  14. , t.status_ AS status
  15. , t.verify_user_id_ AS verifyUserId
  16. , t.reason_ AS reason
  17. , t.intervene_time_ AS interveneTime
  18. , t.create_time_ AS createTime
  19. </sql>
  20. <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.entity.TenantUnbindHistory">
  21. SELECT
  22. <include refid="baseColumns" />
  23. FROM tenant_unbind_history t
  24. order by id_ desc
  25. </select>
  26. </mapper>