GeminiCarAccount.java 561 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.cyksj.model.response;
  2. import lombok.Data;
  3. /**
  4. * Gemini车队账号信息
  5. *
  6. * @author chan
  7. * @date 2025/1/4
  8. */
  9. @Data
  10. public class GeminiCarAccount {
  11. /**
  12. * 账号ID
  13. */
  14. private Integer accountId;
  15. /**
  16. * 车队ID
  17. */
  18. private String carID;
  19. /**
  20. * 显示名称
  21. */
  22. private String nickName;
  23. /**
  24. * 账号类型: Pro/Ultra/Free
  25. */
  26. private String carType;
  27. /**
  28. * 是否Plus
  29. */
  30. private Boolean isPlus;
  31. /**
  32. * 状态
  33. */
  34. private Boolean status;
  35. }