事件提醒

This commit is contained in:
2025-07-09 16:26:04 +08:00
parent 5e331360bd
commit 387e728b26
7 changed files with 147 additions and 2 deletions

View File

@@ -60,6 +60,15 @@ public class SysOaRemind extends BaseEntity {
*/
private String remark;
/** 提醒类型task/project */
private String remindType;
/** 事件idtaskId/projectId */
private Long detailId;
/** 被分配者 */
private Long targetUserId;
/** 结束时间 */
private Date endTime;
/**
* 创建者
*/

View File

@@ -87,5 +87,14 @@ public class SysOaRemindBo extends BaseEntity {
*/
private Date updateTime;
/** 提醒类型task/project */
private String remindType;
/** 事件idtaskId/projectId */
private Long detailId;
/** 被分配者 */
private Long targetUserId;
/** 结束时间 */
private Date endTime;
}

View File

@@ -96,10 +96,17 @@ public class SysOaRemindVo {
private Date updateTime;
private String type;
//截至时间
private Long remainTime;
/** 提醒类型task/project */
private String remindType;
/** 事件idtaskId/projectId */
private Long detailId;
/** 被分配者 */
private Long targetUserId;
/** 结束时间 */
private Date endTime;
}