package space.anyi.BI.entity.xinghuo; /** * 接口使用量对象 * @ProjectName: serve * @FileName: Usage * @Author: 杨逸 * @Data:2024/12/4 20:01 * @Description: */ public class Usage { private Integer total_tokens; private Integer prompt_tokens; private Integer completion_tokens; public Integer getTotal_tokens() { return total_tokens; } public void setTotal_tokens(Integer total_tokens) { this.total_tokens = total_tokens; } public Integer getPrompt_tokens() { return prompt_tokens; } public void setPrompt_tokens(Integer prompt_tokens) { this.prompt_tokens = prompt_tokens; } public Integer getCompletion_tokens() { return completion_tokens; } public void setCompletion_tokens(Integer completion_tokens) { this.completion_tokens = completion_tokens; } @Override public String toString() { return "Usage{" + "total_tokens=" + total_tokens + ", prompt_tokens=" + prompt_tokens + ", completion_tokens=" + completion_tokens + '}'; } }