| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package com.cyksj.model.views;
- import com.ejlchina.searcher.bean.DbIgnore;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /**
- * 项目名: yhlxj11111111
- * 文件名: TicketRenewUpgradeView
- * 创建者: JavaZou
- * 创建时间:2025/7/25 18:11
- */
- @Getter
- @Setter
- public class TicketRenewUpgradeView {
- /**
- * gpt 用户镜像限制次数
- */
- @DbIgnore
- private Integer gptUserLimitNum;
- /**
- * gpt 用户镜像限制时间
- */
- @DbIgnore
- private Long gptUserLimitTime;
- /**
- * luma 用户次数
- */
- @DbIgnore
- private Integer lumaUserNum;
- /**
- * deepseek限制次数
- */
- @DbIgnore
- private Integer userDsLimitNum;
- /**
- * deepseek限制时间
- */
- @DbIgnore
- private Long userDsLimitTime;
- /**
- * 其他模型限制次数
- */
- @DbIgnore
- private Integer userOtherLimitNum;
- /**
- * 其他模型限制时间
- */
- @DbIgnore
- private Long userOtherLimitTime;
- /**
- * GPT think 次数
- */
- private Integer gptThink;
- /**
- * GPT think 限制时间
- */
- private Long gptThinkLimitTime;
- /**
- * GPT 高级模型(pro) 每天次数
- */
- private Integer gptPro;
- /**
- * GPT 高级模型(pro)限制时间
- */
- private Long gptProLimitTime;
- /**
- * 深度研究 次数
- */
- private Integer gptDeepStyleLimit;
- /**
- * 深度研究 限制时间
- */
- private Long gptDeepStyleLimitTime;
- /**
- * 是否是续费升级
- */
- @DbIgnore
- private Boolean isRenewPackage;
- /**
- * 是否可升级套餐 (标准,专业)
- */
- @DbIgnore
- private Boolean upgrade;
- @DbIgnore
- private Long packageId;
- /**
- * 目前已升级套餐价格
- */
- @DbIgnore
- private BigDecimal packagePrice;
- private GoodsDonSkuRenewView renewSku;
- /**
- * claude code每日限额
- */
- private Integer claudeDailyLimit;
- /**
- * Claude code 服务总额度
- */
- private Integer claudeQuota;
- /**
- * cc最高约可使用次数
- */
- private Integer highestUsage;
- /**
- * codex套餐名
- */
- private String codexPlanName;
- /**
- * 每日预算上限
- */
- private Integer openaiDailyLimit;
- /**
- * 每月预算上限
- */
- private Integer openaiQuota;
- }
|