fix(api): 对齐 mp 模块 createTime 类型 Date→string

9个文件统一时间字段类型
vo
xingyu4j 2026-06-07 13:32:26 +08:00
parent 1876932446
commit 3c443a4825
9 changed files with 9 additions and 9 deletions

View File

@ -14,7 +14,7 @@ export namespace MpAccountApi {
aesKey?: string;
qrCodeUrl?: string;
remark?: string;
createTime?: Date;
createTime?: string;
}
}

View File

@ -12,7 +12,7 @@ export namespace MpAutoReplyApi {
content: string;
status: number;
remark?: string;
createTime?: Date;
createTime?: string;
}
}

View File

@ -22,7 +22,7 @@ export namespace MpDraftApi {
accountId: number;
mediaId: string;
articles: Article[];
createTime?: Date;
createTime?: string;
}
/** 图文项(包含预览字段) */

View File

@ -16,7 +16,7 @@ export namespace MpFreePublishApi {
thumbUrl: string;
status: number;
publishTime?: Date;
createTime?: Date;
createTime?: string;
}
}

View File

@ -15,7 +15,7 @@ export namespace MpMaterialApi {
name: string;
size: number;
remark?: string;
createTime?: Date;
createTime?: string;
}
}

View File

@ -15,7 +15,7 @@ export namespace MpMessageApi {
mediaId?: string;
status: number;
remark?: string;
createTime?: Date;
createTime?: string;
sendFrom?: number;
userId?: number;
event?: string;

View File

@ -12,7 +12,7 @@ export namespace MpMessageTemplateApi {
example: string;
primaryIndustry: string;
deputyIndustry: string;
createTime?: Date;
createTime?: string;
}
/** 发送消息模板请求 */

View File

@ -9,7 +9,7 @@ export namespace MpTagApi {
accountId: number;
name: string;
count?: number;
createTime?: Date;
createTime?: string;
}
}

View File

@ -19,7 +19,7 @@ export namespace MpUserApi {
subscribeTime?: Date;
remark?: string;
tagIds?: number[];
createTime?: Date;
createTime?: string;
}
}