101captain
2022-08-09 e8fd15536978e831f90d9709f98c33c12e33893e
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java
@@ -75,7 +75,7 @@
     * @param type
     *            用户类型 用户类型 1 小程序 2 运营平台 3 社区平台
     */
    R<LoginUserInfoVO> getUserInfo(String name, int type);
    R<LoginUserInfoVO> getUserInfo(String name, int type,String appId);
    /**
     * 三端获取登录用户信息
@@ -356,7 +356,7 @@
     *            所属app 1居民端app 2网格员端app 3商家端app
     * @return 协议内容
     */
    R userAgreement(int type);
    R userAgreement(int type,String appId);
    /**
     * 意见反馈
@@ -478,7 +478,7 @@
     *            1居民端app协议 2网格员端app协议 3商家端app协议 4隐私政策
     * @return 协议内容
     */
    R agreement(Integer type);
    R agreement(Integer type,String appId);
    /**
     * 维护用户最后登录时间
@@ -903,5 +903,20 @@
    /**
     * 获取城镇或村落列表
     * */
    R getCommunityList(Integer type);
    R getCommunityList(String name,Long id);
    /**
     * 重置密码
     * @param type
     * @param account
     * @return
     */
    R resetPassword(Integer type,String account);
    /**
     * 天府通办登录
     * @param uuLoginVO
     * @return
     */
    R tfLogin(UuLoginVO uuLoginVO);
}