|
|
@ -39,7 +39,7 @@ public class TcBjsjController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 查询本级上级网评指令比列 (月)列表
|
|
|
|
* 查询本级上级网评指令比列 (月)列表
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('zongzhi:bjsj:list')")
|
|
|
|
|
|
|
|
@GetMapping("/list")
|
|
|
|
@GetMapping("/list")
|
|
|
|
public TableDataInfo list(TcBjsj tcBjsj)
|
|
|
|
public TableDataInfo list(TcBjsj tcBjsj)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -51,8 +51,7 @@ public class TcBjsjController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 导出本级上级网评指令比列 (月)列表
|
|
|
|
* 导出本级上级网评指令比列 (月)列表
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('zongzhi:bjsj:export')")
|
|
|
|
|
|
|
|
@Log(title = "本级上级网评指令比列 (月)", businessType = BusinessType.EXPORT)
|
|
|
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
@PostMapping("/export")
|
|
|
|
public void export(HttpServletResponse response, TcBjsj tcBjsj)
|
|
|
|
public void export(HttpServletResponse response, TcBjsj tcBjsj)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -64,7 +63,7 @@ public class TcBjsjController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 获取本级上级网评指令比列 (月)详细信息
|
|
|
|
* 获取本级上级网评指令比列 (月)详细信息
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('zongzhi:bjsj:query')")
|
|
|
|
|
|
|
|
@GetMapping(value = "/{id}")
|
|
|
|
@GetMapping(value = "/{id}")
|
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -74,8 +73,7 @@ public class TcBjsjController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 新增本级上级网评指令比列 (月)
|
|
|
|
* 新增本级上级网评指令比列 (月)
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('zongzhi:bjsj:add')")
|
|
|
|
|
|
|
|
@Log(title = "本级上级网评指令比列 (月)", businessType = BusinessType.INSERT)
|
|
|
|
|
|
|
|
@PostMapping
|
|
|
|
@PostMapping
|
|
|
|
public AjaxResult add(@RequestBody TcBjsj tcBjsj)
|
|
|
|
public AjaxResult add(@RequestBody TcBjsj tcBjsj)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -85,8 +83,7 @@ public class TcBjsjController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 修改本级上级网评指令比列 (月)
|
|
|
|
* 修改本级上级网评指令比列 (月)
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('zongzhi:bjsj:edit')")
|
|
|
|
|
|
|
|
@Log(title = "本级上级网评指令比列 (月)", businessType = BusinessType.UPDATE)
|
|
|
|
|
|
|
|
@PutMapping
|
|
|
|
@PutMapping
|
|
|
|
public AjaxResult edit(@RequestBody TcBjsj tcBjsj)
|
|
|
|
public AjaxResult edit(@RequestBody TcBjsj tcBjsj)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -96,8 +93,7 @@ public class TcBjsjController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 删除本级上级网评指令比列 (月)
|
|
|
|
* 删除本级上级网评指令比列 (月)
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('zongzhi:bjsj:remove')")
|
|
|
|
|
|
|
|
@Log(title = "本级上级网评指令比列 (月)", businessType = BusinessType.DELETE)
|
|
|
|
|
|
|
|
@DeleteMapping("/{ids}")
|
|
|
|
@DeleteMapping("/{ids}")
|
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
|
{
|
|
|
|
{
|
|
|
|