feat:英德中医院,用户数据同步
parent
8caf37d681
commit
f56298d979
@ -0,0 +1,18 @@
|
|||||||
|
package com.docus.server.ydzyy.mapper;
|
||||||
|
|
||||||
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||||
|
import com.docus.server.ydzyy.entity.YdZyyUserInfoView;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
@DS("ydzyy")
|
||||||
|
public interface YdZyyUserInfoViewMapper {
|
||||||
|
/**
|
||||||
|
* @param startRow 起始1
|
||||||
|
* @param endRow 结束
|
||||||
|
* @return 视图数据
|
||||||
|
*/
|
||||||
|
List<YdZyyUserInfoView> page(@Param("startRow") int startRow, @Param("endRow") int endRow);
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
<?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.docus.server.ydzyy.mapper.YdZyyUserInfoViewMapper">
|
||||||
|
|
||||||
|
|
||||||
|
<select id="page" resultType="com.docus.server.ydzyy.entity.YdZyyUserInfoView">
|
||||||
|
SELECT code, name, roleName, isActive, password
|
||||||
|
FROM (
|
||||||
|
SELECT userView.*, rownum as rn
|
||||||
|
FROM (
|
||||||
|
SELECT code, name, roleName, isActive, password
|
||||||
|
FROM his_user.PL_User
|
||||||
|
GROUP BY code, name, roleName, isActive, password
|
||||||
|
) userView
|
||||||
|
) paging
|
||||||
|
WHERE rn BETWEEN ${startRow} AND ${endRow}
|
||||||
|
</select>
|
||||||
|
</mapper>
|
Loading…
Reference in New Issue