feat:测试

dev
wangxy 1 year ago
parent a870471cbf
commit ef89c82b91

@ -1,13 +0,0 @@
package com.hyp.web.controller.apply;
/**
* packageName com.hyp.web.controller.apply
*
* @author wangxy
* @version JDK 8
* @className TestController
* @date 2024/4/10
* @description TODO
*/
public class TestController {
}

@ -0,0 +1,38 @@
package com.hyp.web.controller.reward;
import com.hyp.common.core.controller.BaseController;
import com.hyp.common.core.domain.entity.SysUser;
import com.hyp.common.core.page.TableDataInfo;
import io.swagger.annotations.Api;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* packageName com.hyp.web.controller.apply
*
* @author wangxy
* @version JDK 8
* @className TestController
* @date 2024/4/10
* @description
*/
@Api("优秀学校奖申请")
@RestController
@RequestMapping("/reward/apply")
public class ApplyController extends BaseController {
@PreAuthorize("@ss.hasPermi('reward:apply:list')")
@GetMapping("/list")
public TableDataInfo list(SysUser user)
{
startPage();
List<SysUser> list = null;
return getDataTable(list);
}
}

@ -131,4 +131,4 @@ xss:
# 排除链接(多个用逗号分隔) # 排除链接(多个用逗号分隔)
excludes: /system/notice excludes: /system/notice
# 匹配链接 # 匹配链接
urlPatterns: /system/*,/monitor/*,/tool/*,/apply/* urlPatterns: /system/*,/monitor/*,/tool/*,/reward/*

Loading…
Cancel
Save