代码生成
This commit is contained in:
74
src/api/ship/MeaPurInt/model/MeaPurIntModel.ts
Normal file
74
src/api/ship/MeaPurInt/model/MeaPurIntModel.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
|
||||
|
||||
/**
|
||||
* @description: LngMeaPurInt分页参数 模型
|
||||
*/
|
||||
export interface LngMeaPurIntPageParams extends BasicPageParams {
|
||||
dateMea: string;
|
||||
|
||||
typeCode: string;
|
||||
|
||||
inspName: string;
|
||||
|
||||
id: string;
|
||||
|
||||
qtyMmbtu: string;
|
||||
|
||||
qtyGj: string;
|
||||
|
||||
qtyTon: string;
|
||||
|
||||
qtyM3L: string;
|
||||
|
||||
qtyM3: string;
|
||||
|
||||
rateTonM3L: string;
|
||||
|
||||
rateTonGj: string;
|
||||
|
||||
rateM3Gj: string;
|
||||
|
||||
rateTonM3: string;
|
||||
|
||||
note: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @description: LngMeaPurInt分页返回值模型
|
||||
*/
|
||||
export interface LngMeaPurIntPageModel {
|
||||
id: string;
|
||||
|
||||
dateMea: string;
|
||||
|
||||
typeCode: string;
|
||||
|
||||
qtyMmbtu: string;
|
||||
|
||||
qtyGj: string;
|
||||
|
||||
qtyTon: string;
|
||||
|
||||
qtyM3L: string;
|
||||
|
||||
qtyM3: string;
|
||||
|
||||
rateTonM3L: string;
|
||||
|
||||
rateTonGj: string;
|
||||
|
||||
rateM3Gj: string;
|
||||
|
||||
rateTonM3: string;
|
||||
|
||||
inspName: string;
|
||||
|
||||
note: string;
|
||||
}
|
||||
|
||||
0;
|
||||
|
||||
/**
|
||||
* @description: LngMeaPurInt分页返回值结构
|
||||
*/
|
||||
export type LngMeaPurIntPageResult = BasicFetchResult<LngMeaPurIntPageModel>;
|
||||
Reference in New Issue
Block a user