12345678910111213141516171819202122232425 |
- package com.jjt.biz.service;
- import com.alibaba.fastjson2.JSONObject;
- /**
- * API接口
- *
- * @author jjt
- * @date 2024-08-08
- */
- public interface IPrometheusService {
- /**
- * pinpoint接口查询
- *
- * @return 结果
- */
- public JSONObject pinpoint();
- /**
- * 普罗米修斯接口
- *
- * @return 结果
- */
- public JSONObject prometheus();
- }
|