管道气采购销信---表单样式
This commit is contained in:
62
src/api/contract/ContractPurPng/model/ContractPurPngModel.ts
Normal file
62
src/api/contract/ContractPurPng/model/ContractPurPngModel.ts
Normal file
@ -0,0 +1,62 @@
|
||||
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>;
|
||||
Reference in New Issue
Block a user