29 lines
479 B
TypeScript
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;
|
|
}
|