project init

This commit is contained in:
System Administrator
2020-03-26 22:41:11 +08:00
commit dfff01e6a0
31 changed files with 8278 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
export enum ProductType {
/**
* 网贷(二部产品)
*/
WEB_LOAN,
/**
* 信用卡贷款(一部产品)
*/
CREDIT_CARD,
}
export interface IRequestBody {
head: any;
body: any;
}