diff --git a/apps/web-antd/src/api/mp/account/index.ts b/apps/web-antd/src/api/mp/account/index.ts index aa8557f15..59cf5c9a6 100644 --- a/apps/web-antd/src/api/mp/account/index.ts +++ b/apps/web-antd/src/api/mp/account/index.ts @@ -14,7 +14,7 @@ export namespace MpAccountApi { aesKey?: string; qrCodeUrl?: string; remark?: string; - createTime?: Date; + createTime?: string; } } diff --git a/apps/web-antd/src/api/mp/autoReply/index.ts b/apps/web-antd/src/api/mp/autoReply/index.ts index d72e5a0cb..1817b99a3 100644 --- a/apps/web-antd/src/api/mp/autoReply/index.ts +++ b/apps/web-antd/src/api/mp/autoReply/index.ts @@ -12,7 +12,7 @@ export namespace MpAutoReplyApi { content: string; status: number; remark?: string; - createTime?: Date; + createTime?: string; } } diff --git a/apps/web-antd/src/api/mp/draft/index.ts b/apps/web-antd/src/api/mp/draft/index.ts index f05d0117a..c65a3cccf 100644 --- a/apps/web-antd/src/api/mp/draft/index.ts +++ b/apps/web-antd/src/api/mp/draft/index.ts @@ -22,7 +22,7 @@ export namespace MpDraftApi { accountId: number; mediaId: string; articles: Article[]; - createTime?: Date; + createTime?: string; } /** 图文项(包含预览字段) */ diff --git a/apps/web-antd/src/api/mp/freePublish/index.ts b/apps/web-antd/src/api/mp/freePublish/index.ts index bc50efe96..1a8edb9ca 100644 --- a/apps/web-antd/src/api/mp/freePublish/index.ts +++ b/apps/web-antd/src/api/mp/freePublish/index.ts @@ -16,7 +16,7 @@ export namespace MpFreePublishApi { thumbUrl: string; status: number; publishTime?: Date; - createTime?: Date; + createTime?: string; } } diff --git a/apps/web-antd/src/api/mp/material/index.ts b/apps/web-antd/src/api/mp/material/index.ts index 91ca6ddf0..4ce6ed272 100644 --- a/apps/web-antd/src/api/mp/material/index.ts +++ b/apps/web-antd/src/api/mp/material/index.ts @@ -15,7 +15,7 @@ export namespace MpMaterialApi { name: string; size: number; remark?: string; - createTime?: Date; + createTime?: string; } } diff --git a/apps/web-antd/src/api/mp/message/index.ts b/apps/web-antd/src/api/mp/message/index.ts index 8395e2933..54f7107e0 100644 --- a/apps/web-antd/src/api/mp/message/index.ts +++ b/apps/web-antd/src/api/mp/message/index.ts @@ -15,7 +15,7 @@ export namespace MpMessageApi { mediaId?: string; status: number; remark?: string; - createTime?: Date; + createTime?: string; sendFrom?: number; userId?: number; event?: string; diff --git a/apps/web-antd/src/api/mp/messageTemplate/index.ts b/apps/web-antd/src/api/mp/messageTemplate/index.ts index 6b0d68294..9eca3bab0 100644 --- a/apps/web-antd/src/api/mp/messageTemplate/index.ts +++ b/apps/web-antd/src/api/mp/messageTemplate/index.ts @@ -12,7 +12,7 @@ export namespace MpMessageTemplateApi { example: string; primaryIndustry: string; deputyIndustry: string; - createTime?: Date; + createTime?: string; } /** 发送消息模板请求 */ diff --git a/apps/web-antd/src/api/mp/tag/index.ts b/apps/web-antd/src/api/mp/tag/index.ts index df8fd3423..aeb9864e5 100644 --- a/apps/web-antd/src/api/mp/tag/index.ts +++ b/apps/web-antd/src/api/mp/tag/index.ts @@ -9,7 +9,7 @@ export namespace MpTagApi { accountId: number; name: string; count?: number; - createTime?: Date; + createTime?: string; } } diff --git a/apps/web-antd/src/api/mp/user/index.ts b/apps/web-antd/src/api/mp/user/index.ts index d79e6c6f4..cc04a6bba 100644 --- a/apps/web-antd/src/api/mp/user/index.ts +++ b/apps/web-antd/src/api/mp/user/index.ts @@ -19,7 +19,7 @@ export namespace MpUserApi { subscribeTime?: Date; remark?: string; tagIds?: number[]; - createTime?: Date; + createTime?: string; } }