|
@@ -42,7 +42,6 @@ public class KuaishouRewardBaseInfoController extends BaseController {
|
|
/**
|
|
/**
|
|
* 查询【请填写功能名称】列表
|
|
* 查询【请填写功能名称】列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:info:list')")
|
|
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(KuaishouRewardBaseInfo kuaishouRewardBaseInfo) {
|
|
public TableDataInfo list(KuaishouRewardBaseInfo kuaishouRewardBaseInfo) {
|
|
startPage();
|
|
startPage();
|
|
@@ -61,7 +60,6 @@ public class KuaishouRewardBaseInfoController extends BaseController {
|
|
/**
|
|
/**
|
|
* 导出【请填写功能名称】列表
|
|
* 导出【请填写功能名称】列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:info:export')")
|
|
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/export")
|
|
@PostMapping("/export")
|
|
public void export(HttpServletResponse response, KuaishouRewardBaseInfo kuaishouRewardBaseInfo) {
|
|
public void export(HttpServletResponse response, KuaishouRewardBaseInfo kuaishouRewardBaseInfo) {
|
|
@@ -73,7 +71,6 @@ public class KuaishouRewardBaseInfoController extends BaseController {
|
|
/**
|
|
/**
|
|
* 获取【请填写功能名称】详细信息
|
|
* 获取【请填写功能名称】详细信息
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:info:query')")
|
|
|
|
@GetMapping(value = "/{id}")
|
|
@GetMapping(value = "/{id}")
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
return AjaxResult.success(kuaishouRewardBaseInfoService.selectKuaishouRewardBaseInfoById(id));
|
|
return AjaxResult.success(kuaishouRewardBaseInfoService.selectKuaishouRewardBaseInfoById(id));
|
|
@@ -127,7 +124,6 @@ public class KuaishouRewardBaseInfoController extends BaseController {
|
|
/**
|
|
/**
|
|
* 修改【请填写功能名称】
|
|
* 修改【请填写功能名称】
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:info:edit')")
|
|
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
|
|
@PutMapping
|
|
@PutMapping
|
|
public AjaxResult edit(@RequestBody KuaishouRewardBaseInfo kuaishouRewardBaseInfo) {
|
|
public AjaxResult edit(@RequestBody KuaishouRewardBaseInfo kuaishouRewardBaseInfo) {
|
|
@@ -137,7 +133,6 @@ public class KuaishouRewardBaseInfoController extends BaseController {
|
|
/**
|
|
/**
|
|
* 删除【请填写功能名称】
|
|
* 删除【请填写功能名称】
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:info:remove')")
|
|
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
@DeleteMapping("/{ids}")
|
|
public AjaxResult remove(@PathVariable Long[] ids) {
|
|
public AjaxResult remove(@PathVariable Long[] ids) {
|