| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * 项目名: yhlxj
- * 文件名: MirrorNoticeUser
- * 创建者: JavaZou
- * 创建时间:2024/11/8 17:48
- */
- @Getter
- @Setter
- public class MirrorNoticeUser extends BaseEntity {
- private Long noticeId;
- /**
- * 平台 MJ GPT
- */
- private String platform;
- /**
- * 标题
- */
- private String title;
- /**
- * 富文本
- */
- private String text;
- /**
- * 状态
- */
- private Boolean status;
- /**
- * 所属镜像店铺用户id
- */
- private Long userId;
- }
|