1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

Temp commit

This commit is contained in:
cccccyb
2023-05-01 01:07:41 +08:00
parent 59621baf47
commit cdf47bc0bb
8 changed files with 325 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ public class Notice implements Serializable {
private Long typeId;
/**
* 发布者
* 发布者id
*/
@TableField("sender_id")
private Long senderId;
@@ -104,6 +104,12 @@ public class Notice implements Serializable {
@TableField("old")
private Integer old;
/**
* 发布者
*/
@TableField(exist = false)
private User sender;
@TableField("deleted")
@TableLogic
private Integer deleted;
@@ -111,4 +117,6 @@ public class Notice implements Serializable {
@TableField("version")
@Version
private Integer version;
}