ReportController.java 562 Bytes
package com.ruoyi.report;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author 20412
 */
@RestController
@RequestMapping("/report")
@Api(tags = "报表管理")
public class ReportController {

    @ApiOperation("签到报表集合查询")
    @GetMapping("/list" )
    public String getList() {
        return "暂未开发";
    }
}