diff --git a/shared/domain/activityField/popNotice.ts b/shared/domain/activityField/popNotice.ts index a0e4215be..a8cde3a2b 100644 --- a/shared/domain/activityField/popNotice.ts +++ b/shared/domain/activityField/popNotice.ts @@ -8,6 +8,7 @@ interface PopNoticeInDb { skip: string; // 前往 sysType: number; // dic_zyz_systemOpenTime的id,功能开启 timePosition: string; // 控制公告持续时间的显示位置'&'表示不显示持续时间 + time: string; // 公告持续时间 } /** @@ -20,6 +21,7 @@ interface PopNoticeInDb { skip: string; // 前往 sysType: number; // dic_zyz_systemOpenTime的id,功能开启 timePosition: string; // 控制公告持续时间的显示位置'&'表示不显示持续时间 + time: string; // 公告持续时间 constructor(activityData: ActivityModelType, createTime: number, serverTime: number) { super(activityData, createTime, serverTime) @@ -34,6 +36,7 @@ interface PopNoticeInDb { this.sysType = dataObj.sysType; this.skip = dataObj.skip; this.timePosition = dataObj.timePosition; + this.time = dataObj.time; } } \ No newline at end of file