huanghongfa
2021-01-28 1f1ad24ae5ece62f88b7b31c05a874ba1d07abcb
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);
}