| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Data;
- import java.util.Date;
- /**
- * @author chan
- * @date 2024/3/18 17:10
- */
- @Data
- @TableName("chatgpt_user")
- @SearchBean(tables = "chatgpt_user")
- public class ChatgptUser extends BaseEntity {
- /**
- * 名称
- */
- private String name;
- /**
- * 头像
- */
- private String img;
- /**
- * 用户凭证
- */
- @TableField("userToken")
- private String userToken;
- /**
- * 过期时间
- */
- @TableField("expireTime")
- private Date expireTime;
- /**
- * 是否为plus
- */
- @TableField("isPlus")
- private Integer isPlus;
- /**
- * sessionId
- */
- @TableField("sessionId")
- private Long sessionId;
- /**
- * 车票id
- */
- @TableField("relationId")
- private Long relationId;
- /**
- * 备注
- */
- private String remark;
- /**
- * 限制次数
- */
- private Integer limit;
- /**
- * 限制时间
- */
- private Long limitTime;
- /**
- * 是否为车队
- */
- private Boolean isCar;
- }
|