76 lines
981 B
TypeScript
76 lines
981 B
TypeScript
|
|
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: LngBPort分页参数 模型
|
||
|
|
*/
|
||
|
|
export interface LngBPortPageParams extends BasicPageParams {
|
||
|
|
fullName: string;
|
||
|
|
|
||
|
|
valid: string;
|
||
|
|
|
||
|
|
code: string;
|
||
|
|
|
||
|
|
shortName: string;
|
||
|
|
|
||
|
|
regionCode: string;
|
||
|
|
|
||
|
|
capacity: string;
|
||
|
|
|
||
|
|
longitude: string;
|
||
|
|
|
||
|
|
latitude: string;
|
||
|
|
|
||
|
|
limit1: string;
|
||
|
|
|
||
|
|
limit2: string;
|
||
|
|
|
||
|
|
limit3: string;
|
||
|
|
|
||
|
|
limit4: string;
|
||
|
|
|
||
|
|
sort: string;
|
||
|
|
|
||
|
|
note: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: LngBPort分页返回值模型
|
||
|
|
*/
|
||
|
|
export interface LngBPortPageModel {
|
||
|
|
id: string;
|
||
|
|
|
||
|
|
code: string;
|
||
|
|
|
||
|
|
fullName: string;
|
||
|
|
|
||
|
|
shortName: string;
|
||
|
|
|
||
|
|
regionCode: string;
|
||
|
|
|
||
|
|
capacity: string;
|
||
|
|
|
||
|
|
longitude: string;
|
||
|
|
|
||
|
|
latitude: string;
|
||
|
|
|
||
|
|
limit1: string;
|
||
|
|
|
||
|
|
limit2: string;
|
||
|
|
|
||
|
|
limit3: string;
|
||
|
|
|
||
|
|
limit4: string;
|
||
|
|
|
||
|
|
sort: string;
|
||
|
|
|
||
|
|
valid: string;
|
||
|
|
|
||
|
|
note: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
0;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: LngBPort分页返回值结构
|
||
|
|
*/
|
||
|
|
export type LngBPortPageResult = BasicFetchResult<LngBPortPageModel>;
|