| | |
| | | import com.doumee.core.annotation.excel.ExcelExporter; |
| | | import com.doumee.core.annotation.pr.PreventRepeat; |
| | | import com.doumee.core.model.ApiResponse; |
| | | import com.doumee.core.model.LoginUserInfo; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.dao.business.dto.SaveDispatchUnitDTO; |
| | | import com.doumee.dao.business.model.DispatchUnit; |
| | | import com.doumee.service.business.DispatchUnitService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import org.apache.shiro.SecurityUtils; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import javax.servlet.http.HttpServletResponse; |
| | |
| | | |
| | | /** |
| | | * @author 江蹄蹄 |
| | | * @date 2024/01/15 15:07 |
| | | * @date 2024/01/16 10:03 |
| | | */ |
| | | @Api(tags = "派遣单位信息表") |
| | | @RestController |
| | |
| | | @ApiOperation("新建") |
| | | @PostMapping("/create") |
| | | @RequiresPermissions("business:dispatchunit:create") |
| | | public ApiResponse create(@RequestBody DispatchUnit dispatchUnit) { |
| | | return ApiResponse.success(dispatchUnitService.create(dispatchUnit)); |
| | | public ApiResponse create(@RequestBody SaveDispatchUnitDTO saveDispatchUnitDTO) { |
| | | return ApiResponse.success(dispatchUnitService.create(saveDispatchUnitDTO)); |
| | | } |
| | | @ApiOperation("派遣单位审核") |
| | | @PostMapping("/check") |
| | | @RequiresPermissions("business:dispatchunit:check") |
| | | public ApiResponse check(@RequestBody DispatchUnit param) { |
| | | return ApiResponse.success(dispatchUnitService.check(param)); |
| | | } |
| | | @ApiOperation("派遣单位工种审核") |
| | | @PostMapping("/checkWorktype") |
| | | @RequiresPermissions("business:dispatchunit:checkWorktype") |
| | | public ApiResponse checkWorktype(@RequestBody DispatchUnit param) { |
| | | return ApiResponse.success(dispatchUnitService.checkWorktype(param)); |
| | | } |
| | | |
| | | @ApiOperation("根据ID删除") |