| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.cyksj.model.entity;
- /**
- * @author zwhui
- * @date 2024/4/16 17:01
- */
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.ejlchina.searcher.bean.DbIgnore;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class LumaUser extends BaseEntity{
- /**
- * 名称
- */
- private String name;
- /**
- * 头像
- */
- private String img;
- /**
- * 用户凭证
- */
- private String userToken;
- /**
- * 过期时间
- */
- private Date expireTime;
- /**
- * 车票id
- */
- private Long relationId;
- /**
- * 可用次数
- */
- private Integer num;
- /**
- * 车票类型 2试用
- */
- @DbIgnore
- @TableField(exist = false)
- private Integer aqType;
- /**
- * 是否是VIP
- */
- private Boolean isVip;
- }
|