28 lines
441 B
TypeScript
28 lines
441 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 合同
|
|
*/
|
|
export interface Settle {
|
|
settleId?: any;
|
|
settleNo?: any;
|
|
status?: any;
|
|
contractId?: any;
|
|
startDate?: any;
|
|
endDate?: string;
|
|
settleMethod?: number;
|
|
extendMonthDate?: number;
|
|
totalAmount?: number;
|
|
userId?: any;
|
|
contactNumber?: any;
|
|
|
|
}
|
|
|
|
/**
|
|
* 合同搜索条件
|
|
*/
|
|
export interface SettleParam extends PageParam {
|
|
settleNo?: string;
|
|
contractId?: string;
|
|
}
|