生成港口 品种等前端代码

This commit is contained in:
2025-10-24 11:05:26 +08:00
parent 53854c519f
commit bd17824058
28 changed files with 6866 additions and 0 deletions

View File

@ -0,0 +1,52 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
/**
* @description: LngBDocCp分页参数 模型
*/
export interface LngBDocCpPageParams extends BasicPageParams {
fullName: string;
valid: string;
code: string;
suSign: string;
suNecSign: string;
cuSign: string;
cuNecSign: string;
note: string;
}
/**
* @description: LngBDocCp分页返回值模型
*/
export interface LngBDocCpPageModel {
id: string;
code: string;
fullName: string;
suSign: string;
suNecSign: string;
cuSign: string;
cuNecSign: string;
valid: string;
note: string;
}
0;
/**
* @description: LngBDocCp分页返回值结构
*/
export type LngBDocCpPageResult = BasicFetchResult<LngBDocCpPageModel>;