| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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;
- }
|