Files
geg-gas-web/src/api/price/PricePurPngApp/model/PricePurPngAppModel.ts

165 lines
2.2 KiB
TypeScript
Raw Normal View History

2026-03-03 17:48:45 +08:00
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>;