62 lines
861 B
TypeScript
62 lines
861 B
TypeScript
|
|
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: LngContract分页参数 模型
|
||
|
|
*/
|
||
|
|
export interface LngContractPageParams extends BasicPageParams {
|
||
|
|
id: string;
|
||
|
|
|
||
|
|
kNo: string;
|
||
|
|
|
||
|
|
kName: string;
|
||
|
|
|
||
|
|
cpName: string;
|
||
|
|
|
||
|
|
dateFrom: string;
|
||
|
|
|
||
|
|
dateTo: string;
|
||
|
|
|
||
|
|
approCode: string;
|
||
|
|
|
||
|
|
cpTableName: string;
|
||
|
|
|
||
|
|
onlineSign: string;
|
||
|
|
|
||
|
|
comId: string;
|
||
|
|
|
||
|
|
note: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: LngContract分页返回值模型
|
||
|
|
*/
|
||
|
|
export interface LngContractPageModel {
|
||
|
|
id: string;
|
||
|
|
|
||
|
|
kNo: string;
|
||
|
|
|
||
|
|
kName: string;
|
||
|
|
|
||
|
|
cpName: string;
|
||
|
|
|
||
|
|
dateFrom: string;
|
||
|
|
|
||
|
|
dateTo: string;
|
||
|
|
|
||
|
|
approCode: string;
|
||
|
|
|
||
|
|
cpTableName: string;
|
||
|
|
|
||
|
|
onlineSign: string;
|
||
|
|
|
||
|
|
comId: string;
|
||
|
|
|
||
|
|
note: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
0;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: LngContract分页返回值结构
|
||
|
|
*/
|
||
|
|
export type LngContractPageResult = BasicFetchResult<LngContractPageModel>;
|