package com.cyksj.model.entity; import com.ejlchina.searcher.bean.SearchBean; import lombok.Data; /** * @author zwhui * @date 2024/4/12 10:52 */ @Data @SearchBean(tables = "midjourney_account") public class MidjourneyAccount extends BaseEntity{ /** * 账号id */ private Long accountId; /** * 状态 true有效 false无效 */ private Boolean status; /** * 服务器id */ private Long guildId; /** * 频道id */ private Long channelId; /** * user_token */ private String userToken; /** * plus服务实例id */ private Long instanceId; /** * fast剩余时间 */ private String fastRemainTime; /** * 备注 */ private String remark; /** * 模式 */ private Integer mode; }