| 12345678910111213141516171819202122232425262728293031 |
- package com.cyksj.model.entity;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @author chan
- * @date 2024/6/21 14:57
- */
- @Data
- @SearchBean(tables = "mirror_notice")
- public class MirrorNotice extends BaseEntity implements Serializable {
- /**
- * 平台 MJ GPT
- */
- private String platform;
- /**
- * 富文本
- */
- private String text;
- /**
- * 状态
- */
- private Boolean status;
- }
|