生成港口 品种等前端代码
This commit is contained in:
52
src/api/mdm/DocCp/model/DocCpModel.ts
Normal file
52
src/api/mdm/DocCp/model/DocCpModel.ts
Normal 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>;
|
||||
Reference in New Issue
Block a user