|
@@ -40,7 +40,6 @@ public class PdmExamineRoleDetailController extends BaseController
|
|
* 查询时户数考核规则明细列表
|
|
* 查询时户数考核规则明细列表
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "查询时户数考核规则明细列表")
|
|
@ApiOperation(value = "查询时户数考核规则明细列表")
|
|
- @PreAuthorize("@ss.hasPermi('system:detail:list')")
|
|
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
public TableDataInfo list(PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
{
|
|
{
|
|
@@ -52,7 +51,6 @@ public class PdmExamineRoleDetailController extends BaseController
|
|
/**
|
|
/**
|
|
* 导出时户数考核规则明细列表
|
|
* 导出时户数考核规则明细列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:detail:export')")
|
|
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.EXPORT)
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/export")
|
|
@PostMapping("/export")
|
|
public void export(HttpServletResponse response, PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
public void export(HttpServletResponse response, PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
@@ -66,7 +64,6 @@ public class PdmExamineRoleDetailController extends BaseController
|
|
* 获取时户数考核规则明细详细信息
|
|
* 获取时户数考核规则明细详细信息
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "获取时户数考核规则明细详细信息")
|
|
@ApiOperation(value = "获取时户数考核规则明细详细信息")
|
|
- @PreAuthorize("@ss.hasPermi('system:detail:query')")
|
|
|
|
@GetMapping(value = "/{id}")
|
|
@GetMapping(value = "/{id}")
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
{
|
|
{
|
|
@@ -77,7 +74,6 @@ public class PdmExamineRoleDetailController extends BaseController
|
|
* 新增时户数考核规则明细
|
|
* 新增时户数考核规则明细
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "新增时户数考核规则明细")
|
|
@ApiOperation(value = "新增时户数考核规则明细")
|
|
- @PreAuthorize("@ss.hasPermi('system:detail:add')")
|
|
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.INSERT)
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.INSERT)
|
|
@PostMapping("/add")
|
|
@PostMapping("/add")
|
|
public AjaxResult add(@RequestBody PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
public AjaxResult add(@RequestBody PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
@@ -89,7 +85,6 @@ public class PdmExamineRoleDetailController extends BaseController
|
|
* 修改时户数考核规则明细
|
|
* 修改时户数考核规则明细
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "修改时户数考核规则明细")
|
|
@ApiOperation(value = "修改时户数考核规则明细")
|
|
- @PreAuthorize("@ss.hasPermi('system:detail:edit')")
|
|
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.UPDATE)
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.UPDATE)
|
|
@PostMapping("/update")
|
|
@PostMapping("/update")
|
|
public AjaxResult edit(@RequestBody PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
public AjaxResult edit(@RequestBody PdmExamineRoleDetail pdmExamineRoleDetail)
|
|
@@ -101,7 +96,6 @@ public class PdmExamineRoleDetailController extends BaseController
|
|
* 删除时户数考核规则明细
|
|
* 删除时户数考核规则明细
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "删除时户数考核规则明细")
|
|
@ApiOperation(value = "删除时户数考核规则明细")
|
|
- @PreAuthorize("@ss.hasPermi('system:detail:remove')")
|
|
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.DELETE)
|
|
@Log(title = "时户数考核规则明细", businessType = BusinessType.DELETE)
|
|
@GetMapping("delete/{ids}")
|
|
@GetMapping("delete/{ids}")
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|