SIMS/src/main/java/top/suyiiyii/sims/entity/Notification.java
tortoise a2659cb192 1. 普通成员可以向管理员申请撤销某一个奖惩记录
2. 管理员可查看所有成员的申请撤销记录,同样需分页展示
2024-09-09 00:48:24 +08:00

36 lines
805 B
Java

package top.suyiiyii.sims.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.tangzc.mpe.autotable.annotation.Table;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.time.LocalDateTime;
/**
* @Author tortoise
* @Date 2024/8/9 22:22
* @PackageName:top.suyiiyii.sims.entity
* @ClassName: Notification
* @Description: TODO
* @Version 1.0
*/
@Data
@Table
@AllArgsConstructor
@NoArgsConstructor
public class Notification {
@TableId(type= IdType.AUTO)
private Integer id;
private String title;
private String content;
private Integer senderId;
private Long createdAt;
private String status;
private String type;
private Integer targetUserId;
}