生成港口 品种等前端代码
This commit is contained in:
76
src/api/mdm/Port/model/PortModel.ts
Normal file
76
src/api/mdm/Port/model/PortModel.ts
Normal file
@ -0,0 +1,76 @@
|
||||
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>;
|
||||
Reference in New Issue
Block a user