| 1234567891011121314151617181920 |
- package com.cyksj.model.response;
- import lombok.Data;
- /**
- * Grok conversation count response.
- */
- @Data
- public class GrokConversationCountResponse {
- private Long count;
- private Integer limit;
- private Long remaining;
- private Long time;
- private Boolean isVip;
- }
|