116 lines
4.2 KiB
Java
116 lines
4.2 KiB
Java
package com.gxwebsoft.law.controller;
|
|
|
|
import com.gxwebsoft.common.core.web.BaseController;
|
|
import com.gxwebsoft.law.service.LawLegalOrgCheckConfigService;
|
|
import com.gxwebsoft.law.entity.LawLegalOrgCheckConfig;
|
|
import com.gxwebsoft.law.param.LawLegalOrgCheckConfigParam;
|
|
import com.gxwebsoft.common.core.web.ApiResult;
|
|
import com.gxwebsoft.common.core.web.PageResult;
|
|
import com.gxwebsoft.common.core.web.PageParam;
|
|
import com.gxwebsoft.common.core.web.BatchParam;
|
|
import com.gxwebsoft.common.core.annotation.OperationLog;
|
|
import com.gxwebsoft.common.system.entity.User;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import javax.annotation.Resource;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 企业法制体检配置控制器
|
|
*
|
|
* @author LX
|
|
* @since 2025-04-17 17:51:15
|
|
*/
|
|
@Api(tags = "企业法制体检配置管理")
|
|
@RestController
|
|
@RequestMapping("/api/law/law-legal-org-check-config")
|
|
public class LawLegalOrgCheckConfigController extends BaseController {
|
|
@Resource
|
|
private LawLegalOrgCheckConfigService lawLegalOrgCheckConfigService;
|
|
|
|
@ApiOperation("分页查询企业法制体检配置")
|
|
@GetMapping("/page")
|
|
public ApiResult<PageResult<LawLegalOrgCheckConfig>> page(LawLegalOrgCheckConfigParam param) {
|
|
// 使用关联查询
|
|
return success(lawLegalOrgCheckConfigService.pageRel(param));
|
|
}
|
|
|
|
@ApiOperation("查询全部企业法制体检配置")
|
|
@GetMapping()
|
|
public ApiResult<List<LawLegalOrgCheckConfig>> list(LawLegalOrgCheckConfigParam param) {
|
|
// 使用关联查询
|
|
return success(lawLegalOrgCheckConfigService.listRel(param));
|
|
}
|
|
|
|
@PreAuthorize("hasAuthority('law:lawLegalOrgCheckConfig:list')")
|
|
@ApiOperation("根据id查询企业法制体检配置")
|
|
@GetMapping("/{id}")
|
|
public ApiResult<LawLegalOrgCheckConfig> get(@PathVariable("id") Integer id) {
|
|
// 使用关联查询
|
|
return success(lawLegalOrgCheckConfigService.getByIdRel(id));
|
|
}
|
|
|
|
@ApiOperation("添加企业法制体检配置")
|
|
@PostMapping()
|
|
public ApiResult<?> save(@RequestBody LawLegalOrgCheckConfig lawLegalOrgCheckConfig) {
|
|
// 记录当前登录用户id
|
|
User loginUser = getLoginUser();
|
|
if (loginUser != null) {
|
|
lawLegalOrgCheckConfig.setUserId(loginUser.getUserId());
|
|
}
|
|
if (lawLegalOrgCheckConfigService.save(lawLegalOrgCheckConfig)) {
|
|
return success("添加成功");
|
|
}
|
|
return fail("添加失败");
|
|
}
|
|
|
|
@ApiOperation("修改企业法制体检配置")
|
|
@PutMapping()
|
|
public ApiResult<?> update(@RequestBody LawLegalOrgCheckConfig lawLegalOrgCheckConfig) {
|
|
if (lawLegalOrgCheckConfigService.updateById(lawLegalOrgCheckConfig)) {
|
|
return success("修改成功");
|
|
}
|
|
return fail("修改失败");
|
|
}
|
|
|
|
@ApiOperation("删除企业法制体检配置")
|
|
@DeleteMapping("/{id}")
|
|
public ApiResult<?> remove(@PathVariable("id") Integer id) {
|
|
if (lawLegalOrgCheckConfigService.removeById(id)) {
|
|
return success("删除成功");
|
|
}
|
|
return fail("删除失败");
|
|
}
|
|
|
|
@ApiOperation("批量添加企业法制体检配置")
|
|
@PostMapping("/batch")
|
|
public ApiResult<?> saveBatch(@RequestBody List<LawLegalOrgCheckConfig> list) {
|
|
if (lawLegalOrgCheckConfigService.saveBatch(list)) {
|
|
return success("添加成功");
|
|
}
|
|
return fail("添加失败");
|
|
}
|
|
|
|
@ApiOperation("批量修改企业法制体检配置")
|
|
@PutMapping("/batch")
|
|
public ApiResult<?> updateBatch(@RequestBody BatchParam<LawLegalOrgCheckConfig> batchParam) {
|
|
if (batchParam.update(lawLegalOrgCheckConfigService, "id")) {
|
|
return success("修改成功");
|
|
}
|
|
return fail("修改失败");
|
|
}
|
|
|
|
@ApiOperation("批量删除企业法制体检配置")
|
|
@DeleteMapping("/batch")
|
|
public ApiResult<?> removeBatch(@RequestBody List<Integer> ids) {
|
|
if (lawLegalOrgCheckConfigService.removeByIds(ids)) {
|
|
return success("删除成功");
|
|
}
|
|
return fail("删除失败");
|
|
}
|
|
|
|
}
|