116 lines
4.1 KiB
Java
116 lines
4.1 KiB
Java
package com.gxwebsoft.law.controller;
|
|
|
|
import com.gxwebsoft.common.core.web.BaseController;
|
|
import com.gxwebsoft.law.service.LawLegalCalContentService;
|
|
import com.gxwebsoft.law.entity.LawLegalCalContent;
|
|
import com.gxwebsoft.law.param.LawLegalCalContentParam;
|
|
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 19:23:47
|
|
*/
|
|
@Api(tags = "用户填写法律计算器内容管理")
|
|
@RestController
|
|
@RequestMapping("/api/law/law-legal-cal-content")
|
|
public class LawLegalCalContentController extends BaseController {
|
|
@Resource
|
|
private LawLegalCalContentService lawLegalCalContentService;
|
|
|
|
@ApiOperation("分页查询用户填写法律计算器内容")
|
|
@GetMapping("/page")
|
|
public ApiResult<PageResult<LawLegalCalContent>> page(LawLegalCalContentParam param) {
|
|
// 使用关联查询
|
|
return success(lawLegalCalContentService.pageRel(param));
|
|
}
|
|
|
|
@ApiOperation("查询全部用户填写法律计算器内容")
|
|
@GetMapping()
|
|
public ApiResult<List<LawLegalCalContent>> list(LawLegalCalContentParam param) {
|
|
// 使用关联查询
|
|
return success(lawLegalCalContentService.listRel(param));
|
|
}
|
|
|
|
@PreAuthorize("hasAuthority('law:lawLegalCalContent:list')")
|
|
@ApiOperation("根据id查询用户填写法律计算器内容")
|
|
@GetMapping("/{id}")
|
|
public ApiResult<LawLegalCalContent> get(@PathVariable("id") Integer id) {
|
|
// 使用关联查询
|
|
return success(lawLegalCalContentService.getByIdRel(id));
|
|
}
|
|
|
|
@ApiOperation("添加用户填写法律计算器内容")
|
|
@PostMapping()
|
|
public ApiResult<?> save(@RequestBody LawLegalCalContent lawLegalCalContent) {
|
|
// 记录当前登录用户id
|
|
User loginUser = getLoginUser();
|
|
if (loginUser != null) {
|
|
lawLegalCalContent.setUserId(loginUser.getUserId());
|
|
}
|
|
if (lawLegalCalContentService.save(lawLegalCalContent)) {
|
|
return success("添加成功");
|
|
}
|
|
return fail("添加失败");
|
|
}
|
|
|
|
@ApiOperation("修改用户填写法律计算器内容")
|
|
@PutMapping()
|
|
public ApiResult<?> update(@RequestBody LawLegalCalContent lawLegalCalContent) {
|
|
if (lawLegalCalContentService.updateById(lawLegalCalContent)) {
|
|
return success("修改成功");
|
|
}
|
|
return fail("修改失败");
|
|
}
|
|
|
|
@ApiOperation("删除用户填写法律计算器内容")
|
|
@DeleteMapping("/{id}")
|
|
public ApiResult<?> remove(@PathVariable("id") Integer id) {
|
|
if (lawLegalCalContentService.removeById(id)) {
|
|
return success("删除成功");
|
|
}
|
|
return fail("删除失败");
|
|
}
|
|
|
|
@ApiOperation("批量添加用户填写法律计算器内容")
|
|
@PostMapping("/batch")
|
|
public ApiResult<?> saveBatch(@RequestBody List<LawLegalCalContent> list) {
|
|
if (lawLegalCalContentService.saveBatch(list)) {
|
|
return success("添加成功");
|
|
}
|
|
return fail("添加失败");
|
|
}
|
|
|
|
@ApiOperation("批量修改用户填写法律计算器内容")
|
|
@PutMapping("/batch")
|
|
public ApiResult<?> updateBatch(@RequestBody BatchParam<LawLegalCalContent> batchParam) {
|
|
if (batchParam.update(lawLegalCalContentService, "id")) {
|
|
return success("修改成功");
|
|
}
|
|
return fail("修改失败");
|
|
}
|
|
|
|
@ApiOperation("批量删除用户填写法律计算器内容")
|
|
@DeleteMapping("/batch")
|
|
public ApiResult<?> removeBatch(@RequestBody List<Integer> ids) {
|
|
if (lawLegalCalContentService.removeByIds(ids)) {
|
|
return success("删除成功");
|
|
}
|
|
return fail("删除失败");
|
|
}
|
|
|
|
}
|