代码生成

This commit is contained in:
‘huanghaiixia’
2026-03-03 17:48:45 +08:00
parent 207f8cc311
commit 90fd1c6f98
42 changed files with 9399 additions and 0 deletions

View File

@ -0,0 +1,165 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
/**
* @description: LngPricePurPngApp分页参数 模型
*/
export interface LngPricePurPngAppPageParams extends BasicPageParams {
id: string;
appName: string;
priceTypeCode: string;
comId: string;
priceDesc: string;
approCode: string;
}
/**
* @description: LngPricePurPngApp分页返回值模型
*/
export interface LngPricePurPngAppPageModel {
id: string;
appName: string;
priceTypeCode: string;
comId: string;
priceDesc: string;
approCode: string;
}
/**
* @description: LngPricePurPngApp表类型
*/
export interface LngPricePurPngAppModel {
id: number;
comId: number;
appName: string;
priceTypeCode: string;
priceDesc: string;
dateSubmit: string;
approCode: string;
timeAppro: string;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
lngPricePurPngAppSuList?: LngPricePurPngAppSuModel;
lngPricePurPngAppSuDtlList?: LngPricePurPngAppSuDtlModel;
}
/**
* @description: LngPricePurPngAppSu表类型
*/
export interface LngPricePurPngAppSuModel {
id: number;
pppaId: number;
suCode: string;
kId: number;
kpppId: number;
pointUpCode: string;
kpppsId: number;
pointDelyCode: string;
transSign: string;
uomCode: string;
dateFrom: string;
priceDesc: string;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
}
/**
* @description: LngPricePurPngAppSuDtl表类型
*/
export interface LngPricePurPngAppSuDtlModel {
id: number;
pppasId: number;
priceCode: string;
sort: number;
rateM3Gj: number;
rateQtyGj: number;
rateQtyM3: number;
priceGj: number;
priceM3: number;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
}
/**
* @description: LngPricePurPngApp分页返回值结构
*/
export type LngPricePurPngAppPageResult = BasicFetchResult<LngPricePurPngAppPageModel>;