This commit is contained in:
2024-01-31 14:56:48 +08:00
parent 14cbb87311
commit 494e3ee248
97 changed files with 11579 additions and 3858 deletions

View File

@@ -0,0 +1,28 @@
import type { PageParam } from '@/api';
/**
* 合同
*/
export interface Lending {
lendingId?: any;
contractId?: any;
contactNumber?: any;
signDate?: any;
projectName?: any;
customerName?: any;
companyName?: any;
propertyCompany?: any;
settleDate?: any;
settleAmount?: any;
fileList?: any;
remark?: any;
userId?: any;
}
/**
* 合同搜索条件
*/
export interface LendingParam extends PageParam {
projectName?: string;
contractNo?: string;
}