File was renamed from springcloud_k8s_panzhihuazhihuishequ/huacheng_union_applets/src/main/java/com/chuangongzhijia/huachengunion_applets/api/UnionUserApi.java |
| | |
| | | package com.chuangongzhijia.huachengunion_applets.api; |
| | | package com.chuangongzhijia.huacheng_union_applets.api; |
| | | |
| | | import com.panzhihua.common.controller.BaseController; |
| | | import com.panzhihua.common.model.dtos.equipment.UnionUserDto; |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.model.vos.R; |
| | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | @Slf4j |
| | | @Api(tags = {"用户相关"}) |
| | | @RestController |
| | | @RequestMapping("/unionUser") |
| | | public class UnionUserApi { |
| | | public class UnionUserApi extends BaseController { |
| | | |
| | | @Resource |
| | | private CommunityUnionService communityUnionService; |
| | |
| | | /** |
| | | * 总工会户外劳登录 |
| | | * |
| | | * @param loginUserInfoVO |
| | | * @return 总工会户外劳共用户 |
| | | */ |
| | | @ApiOperation(value = "总工会户外劳登录") |