huanghongfa
2021-01-28 65c7ded03175596fcfacc43f3f2c60076277c21a
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java
@@ -484,4 +484,20 @@
     */
    @PostMapping("agreement")
    R agreement(@RequestParam("type")Integer type);
    /**
     * 维护用户最后登录时间
     * @param userId 用户主键
     * @return 维护结果
     */
    @PostMapping("putuserlastlogintime")
    R putUserLastLoginTime(@RequestParam("userId")Long userId);
    /**
     * 删除意见反馈
     * @param id 主键
     * @return 删除结果
     */
    @PostMapping("deletefeedback")
    R deleteFeedback(@RequestParam("id")Long id);
}