| | |
| | | package com.example.jz.modle.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | * @author makejava |
| | | * @since 2022-07-12 16:50:56 |
| | | */ |
| | | @TableName("qyjz.announcement") |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Accessors(chain = true) |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Announcement implements Serializable { |
| | | private static final long serialVersionUID = -64538879138052915L; |
| | | /** |
| | |
| | | * 创建时间 |
| | | */ |
| | | private Date ctime; |
| | | |
| | | |
| | | public String getText() { |
| | | return text; |
| | | } |
| | | |
| | | public void setText(String text) { |
| | | this.text = text; |
| | | } |
| | | |
| | | public Integer getGroupId() { |
| | | return groupId; |
| | | } |
| | | |
| | | public void setGroupId(Integer groupId) { |
| | | this.groupId = groupId; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Date getCtime() { |
| | | return ctime; |
| | | } |
| | | |
| | | public void setCtime(Date ctime) { |
| | | this.ctime = ctime; |
| | | } |
| | | |
| | | } |
| | | |