Files
tuanwei-admin/src/api/tower/settle/model/index.ts
b2894lxlx df95f7d02c 完善合同管理;
新增结算管理
2023-06-12 01:33:08 +08:00

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