package com.lf.server.controller.sys;
|
|
import com.lf.server.aspect.SysLog;
|
import com.lf.server.controller.all.BaseController;
|
import com.lf.server.entity.all.ResponseMsg;
|
import com.lf.server.entity.sys.ResOpEntity;
|
import com.lf.server.service.sys.ResOpService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.util.List;
|
|
/**
|
* 资源操作
|
* @author SWS
|
* @date 2022-09.28
|
*/
|
@Api(tags = "运维管理\\资源操作")
|
@RestController
|
@RequestMapping("/resOp")
|
public class ResOpController extends BaseController {
|
@Autowired
|
ResOpService resOpService;
|
|
@SysLog()
|
@ApiOperation(value = "查询记录数")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "userid", value = "登录人ID", dataType = "String", paramType = "query", required = false, example = "sys_res_op")
|
})
|
@GetMapping({"/selectCount"})
|
public ResponseMsg<Integer> selectCount(String userid) {
|
try {
|
int count = resOpService.selectCount(userid);
|
|
return success(count);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), -1);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "分页查询")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "userid", value = "登录人ID", dataType = "String", paramType = "query", example = "sys_res_op"),
|
@ApiImplicitParam(name = "pageSize", value = "每页条数", dataType = "Integer", paramType = "query", example = "10"),
|
@ApiImplicitParam(name = "pageIndex", value = "分页数(从1开始)", dataType = "Integer", paramType = "query", example = "1")
|
})
|
@GetMapping(value = "/selectByPage")
|
public ResponseMsg<List<ResOpEntity>> selectByPage(String userid, Integer pageSize, Integer pageIndex) {
|
try {
|
if (pageSize < 1 || pageIndex < 1) {
|
return fail("每页页数或分页数小于1", null);
|
}
|
List<ResOpEntity> rs = resOpService.selectByPage(userid, pageSize, pageSize * (pageIndex - 1));
|
return success(rs);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), null);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "分页查询并返回记录数")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "userid", value = "登录人ID", dataType = "String", paramType = "query", example = "1"),
|
@ApiImplicitParam(name = "pageSize", value = "每页条数", dataType = "Integer", paramType = "query", example = "10"),
|
@ApiImplicitParam(name = "pageIndex", value = "分页数(从1开始)", dataType = "Integer", paramType = "query", example = "1")
|
})
|
@GetMapping(value = "/selectByPageAndCount")
|
public ResponseMsg<List<ResOpEntity>> selectByPageAndCount(String userid, Integer pageSize, Integer pageIndex) {
|
try {
|
if (pageSize < 1 || pageIndex < 1) {
|
return fail("每页页数或分页数小于1", null);
|
}
|
|
int count = resOpService.selectCount(userid);
|
if (count == 0) {
|
return success(0, null);
|
}
|
|
List<ResOpEntity> rs = resOpService.selectByPage(userid, pageSize, pageSize * (pageIndex - 1));
|
|
return success(count, rs);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), null);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "插入字典")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "resOpEntity", value = "字典实体类", dataType = "com.lf.server.entity.sys.ResOpEntity", paramType = "body", example = "")
|
})
|
@PostMapping(value = "/insertResOp", produces = "application/json; charset=UTF-8")
|
public ResponseMsg<Integer> insertResOp(@RequestBody ResOpEntity resOpEntity) {
|
try {
|
int count = resOpService.insertResOp(resOpEntity);
|
|
return success(count);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), -1);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "插入多条字典")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "resOpEntity", value = "字典实体类集合", dataType = "List<ResOpEntity>", paramType = "body", example = "")
|
})
|
@PostMapping(value = "/insertResOps", produces = "application/json; charset=UTF-8")
|
public ResponseMsg<Integer> insertResOps(@RequestBody List<ResOpEntity> resOpEntity) {
|
try {
|
int count = resOpService.insertResOps(resOpEntity);
|
|
return success(count);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), -1);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "删除一条字典")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "id", value = "字典ID", dataType = "Integer", paramType = "query", example = "1")
|
})
|
@GetMapping(value = "/deleteLogin")
|
public ResponseMsg<Integer> deleteResOp(int id) {
|
try {
|
int count = resOpService.deleteResOp(id);
|
|
return success(count);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), -1);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "删除多条字典")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "ids", value = "字典ID集合", dataType = "List<Integer>", paramType = "query", example = "1,2")
|
})
|
@GetMapping(value = "/deleteResOps")
|
public ResponseMsg<Integer> deleteResOps(@RequestParam List<Integer> ids) {
|
try {
|
if (ids == null || ids.isEmpty()) {
|
return fail("id数组不能为空", -1);
|
}
|
int count = resOpService.deleteResOps(ids);
|
return success(count);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), -1);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "更新一条字典")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "loginEntity", value = "字典ID集合", dataType = "LoginEntity", paramType = "body", example = "")
|
})
|
@ResponseBody
|
@PostMapping(value = "/updateResOp", produces = "application/json; charset=UTF-8")
|
public ResponseMsg<Integer> updateResOp(@RequestBody ResOpEntity resOpEntity) {
|
try {
|
int count = resOpService.updateResOp(resOpEntity);
|
|
return success(count);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), -1);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "根据ID查询字典")
|
@ApiImplicitParams({
|
@ApiImplicitParam(name = "id", value = "字典ID", dataType = "Integer", paramType = "query", example = "1")
|
})
|
@GetMapping(value = "/selectResOp")
|
public ResponseMsg<ResOpEntity> selectResOp(int id) {
|
try {
|
ResOpEntity resOpEntity = resOpService.selectResOp(id);
|
|
return success(resOpEntity);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), null);
|
}
|
}
|
|
@SysLog()
|
@ApiOperation(value = "查询所有字典")
|
@GetMapping(value = "/selectResOpAll")
|
public ResponseMsg<List<ResOpEntity>> selectResOpAll() {
|
try {
|
List<ResOpEntity> list = resOpService.selectResOpAll();
|
|
return success(list);
|
} catch (Exception ex) {
|
return fail(ex.getMessage(), null);
|
}
|
}
|
}
|