| | |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.service.community.CommunityUnionService; |
| | | 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; |
| | |
| | | * @param unionReportDto |
| | | * @return 新增结果 |
| | | */ |
| | | @ApiOperation(value = "户外劳工站上报表") |
| | | @PostMapping("/add") |
| | | public R add(@RequestBody UnionReportDto unionReportDto) { |
| | | unionReportDto.setIsApplets(3); |
| | | return communityUnionService.unionReportAdd(unionReportDto); |
| | | } |
| | | |
| | |
| | | * @param unionReportDto |
| | | * @return 动态结果 |
| | | */ |
| | | @ApiOperation(value = "分页户外劳工站上报表") |
| | | @PostMapping("/query") |
| | | public R query(@RequestBody UnionReportDto unionReportDto) { |
| | | unionReportDto.setIsApplets(3); |
| | | return communityUnionService.unionReportQuery(unionReportDto); |
| | | } |
| | | } |