28 lines
699 B
Java
28 lines
699 B
Java
|
|
package com.hivekion.statistic.controller;
|
|||
|
|
|
|||
|
|
import com.hivekion.common.entity.ResponseData;
|
|||
|
|
import com.hivekion.statistic.bean.StatisticBean;
|
|||
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|||
|
|
import org.springframework.web.bind.annotation.RestController;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* [类的简要说明]
|
|||
|
|
* <p>
|
|||
|
|
* [详细描述,可选]
|
|||
|
|
* <p>
|
|||
|
|
*
|
|||
|
|
* @author LiDongYU
|
|||
|
|
* @since 2025/7/22
|
|||
|
|
*/
|
|||
|
|
@RestController
|
|||
|
|
@RequestMapping("/statistic")
|
|||
|
|
public class StatisticController {
|
|||
|
|
@GetMapping("/info")
|
|||
|
|
//todo
|
|||
|
|
public ResponseData<StatisticBean> statistic(String resourceId) {
|
|||
|
|
|
|||
|
|
return ResponseData.success(new StatisticBean());
|
|||
|
|
}
|
|||
|
|
}
|