初始化api

This commit is contained in:
whyour
2021-03-15 21:09:30 +08:00
parent f1f8ece8a2
commit 99a8dc78db
28 changed files with 664 additions and 49 deletions
+27
View File
@@ -0,0 +1,27 @@
export interface ICommon {
_id: string;
value: String;
name: String;
type: Number;
}
export interface ICommonInputDTO {
value: String;
name: String;
type: Number;
}
export enum ShareCodeType {
ddFactory = 1,
ddXw,
jxCfd,
jxFactory,
jxFactoryTuan,
jxNc,
jxStory,
jxCfdGroup,
jdZz,
jdZjdTuan,
didi,
jd818,
}
+7
View File
@@ -0,0 +1,7 @@
export interface IContent {
author: String;
paragraphs: [String];
title: String;
id: String;
created_at: Number;
}