| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | * @TableName sys_notice_user |
| | | */ |
| | | @TableName(value ="sys_notice_user") |
| | | @Data |
| | | public class SysNoticeUser implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long noticeId; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 是否已读 |
| | | */ |
| | | private Integer isRead; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |
| | | } |