Files
happy-life-star/backend-single/src/main/java/com/emotion/dto/request/AiConfigCallStatsRequest.java
T
2025-12-25 00:13:42 +08:00

30 lines
687 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.emotion.dto.request;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
/**
* AI配置调用次数统计请求
* 用于管理后台仪表盘:按 t_ai_config 配置统计 t_coze_api_call 调用次数
*
* @author system
* @date 2025-12-24
*/
@Data
@Schema(description = "AI配置调用次数统计请求")
public class AiConfigCallStatsRequest {
/**
* 返回条数限制(默认 20,最大 200)
*/
@Min(1)
@Max(200)
@Schema(description = "返回条数限制(默认20,最大200", example = "20")
private Integer limit;
}