Commit e1a072ac by tom_glb

commited by jiabei asjUpdated.....

parent ff33dc22
......@@ -11,6 +11,8 @@ import com.founder.commonutils.asjEntity.CbxszAndXlaj;
import com.founder.commonutils.asjEntity.TbStAsj;
import com.founder.commonutils.publicEntity.R;
import com.founder.commonutils.publicEntity.Receiving;
import com.founder.servicebase.logs.OperLog;
import com.founder.servicebase.logs.OperationType;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
......@@ -43,6 +45,7 @@ public class TbStAsjController {
@Value("${ssdw}")
private String ssdw;
//案件查询(存储reids)
@OperLog(message = "获取同类案件信息//案件查询",operation = OperationType.QUERY)
@ApiOperation(value = "获取同类案件信息//案件查询(存储reids)")
@PostMapping("/ajxx")
public R selectAsjxx(@RequestBody Receiving receiving) {
......@@ -52,6 +55,7 @@ public class TbStAsjController {
return R.ok().data("data",asjList);
}
@OperLog(message = "按条件查询案件",operation = OperationType.QUERY)
@ApiOperation(value = "按条件查询案件")
@PostMapping("getAsj")
public R getAsj(@RequestBody AsjQuery asjQuery) {
......@@ -81,6 +85,7 @@ public class TbStAsjController {
return R.ok().data("asj", list);
}
@OperLog(message = "获取所有案件(带分页)",operation = OperationType.QUERY)
@ApiOperation(value = "获取所有案件(带分页)")
@GetMapping("getPageAsj/{current}/{limit}")
public R getPageAsj(@PathVariable long current,
......@@ -93,6 +98,7 @@ public class TbStAsjController {
return R.ok().data("total", total).data("rows", records);
}
@OperLog(message = "带条件查询所有案件(带分页)",operation = OperationType.QUERY)
@ApiOperation(value = "带条件查询所有案件(带分页)")
@PostMapping("getPageAsjCondition/{current}/{limit}")
public R getPageAsjCondition(@PathVariable long current, @PathVariable long limit,
......@@ -129,6 +135,7 @@ public class TbStAsjController {
return R.ok().data("total",total).data("rows",records);
}
@OperLog(message = "修改案件",operation = OperationType.QUERY)
@ApiOperation(value = "修改案件")
@PutMapping("updateAsj")
public R updateAsj(@RequestBody TbStAsj tbStAsj) {
......@@ -181,6 +188,7 @@ public class TbStAsjController {
}*/
// 查询案事件标注信息
@OperLog(message = "获取串并线索组信息",operation = OperationType.QUERY)
@ApiOperation(value = "获取串并线索组信息")
@PostMapping("/getAsjxxCbzAndXlaj")
public R getAsjxxCbzAndXlaj(@ApiParam(name = "asjbh", value = "案事件编号")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment