Files
tuanwei-admin/src/api/tower/lending/model/index.ts
2024-01-31 14:56:48 +08:00

29 lines
479 B
TypeScript

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;
}