yanghui
2022-11-28 42521c9b51c1bd9a40036f18fd610cd46601222d
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java
@@ -11,6 +11,7 @@
import com.panzhihua.common.model.dtos.community.microCommercialStreet.BindUserPhoneDTO;
import com.panzhihua.common.model.dtos.community.microCommercialStreet.McsMerchantDTO;
import com.panzhihua.common.model.dtos.grid.*;
import com.panzhihua.common.model.dtos.partybuilding.ComPbCheckUserDTO;
import com.panzhihua.common.model.dtos.user.PageFeedBackDTO;
import com.panzhihua.common.model.dtos.user.PageUserAppletsBackstageDTO;
import com.panzhihua.common.model.dtos.user.SysUserEditTipsDTO;
@@ -902,9 +903,23 @@
    R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus);
    /**
     * 无水洗车通知推送
     * @param phone
     * @param orderStatus
     * @return
     */
    R wsPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus);
    /**
     * 获取城镇或村落列表
     * */
    R getCommunityList(String name,Long id);
    /**
     * 获取所有城镇或村落列表
     * @return
     */
    R getAllCommunityList();
    /**
     * 重置密码
@@ -912,7 +927,7 @@
     * @param account
     * @return
     */
    R resetPassword(Integer type,String account);
    R resetPassword(Integer type,String account,String appId);
    /**
     * 天府通办登录
@@ -920,4 +935,43 @@
     * @return
     */
    R tfLogin(UuLoginVO uuLoginVO);
    /**
     * 三说会堂新增业务中心或专家账号
     * */
    R addExpertOrIndustryCenter(AdministratorsUserVO administratorsUserVO);
    /**
     * 三说会堂后台重置密码
     * */
    R resetPassExpertOrIndustryCenter(String account,String password);
    /**
     * 用户授权
     * @param userId
     * @return
     */
    R accept(Long userId);
    R addComPbCheckUser(ComPbCheckUserDTO comPbCheckUserDTO);
    /**
     * 移除专家权限
     * */
    R removeExpertRole(String phone);
    /**
     * 回复用户反馈
     * */
    R feedBackReply(SysUserFeedbackVO sysUserFeedbackVO);
    /**
     * 查看我的问题留言或者问题留言记录
     * */
    R myFeedBack(Long id,Integer type,Long propertyId);
    /**
     * 是否为物业公司登录
     * */
    R propertyCheck(String phone);
}