From 875fe7cf1e854c8f5f6a5ffcd8820a5a69b57cc2 Mon Sep 17 00:00:00 2001 From: luying Date: Mon, 1 Aug 2022 13:30:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E8=84=B8=E5=85=AC=E5=91=8A=EF=BC=9A?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/activityField/popNotice.ts | 3 +++ 1 file changed, 3 insertions(+) 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