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;