Explorar o código

feat(types): 添加工料机动态价格指标

zhangweicheng %!s(int64=3) %!d(string=hai) anos
pai
achega
1b1d1ecb2d
Modificáronse 2 ficheiros con 6 adicións e 0 borrados
  1. 1 0
      types/src/interface/bill.ts
  2. 5 0
      types/src/interface/glj.ts

+ 1 - 0
types/src/interface/bill.ts

@@ -309,6 +309,7 @@ export interface IFBIndex {
   fileType?: FileType; // 文件类型
   indexTypes?: string[]; // 项目分类或者说功能分类--
   dynamicIndex?: Record<string, IFees>; // 动态指标,年-月为key 综合指标的映射
+  dynamicGljMap?: Record<string, Record<string, string>>; // 动态工料机价格指标,年-月为key 工料机工五大项为子key  value为市场价
   minUnitPrice?: string;
   maxUnitPrice?: string;
   fees?: IFees; // 费用字段

+ 5 - 0
types/src/interface/glj.ts

@@ -510,3 +510,8 @@ export interface ICptGljLib {
   isEnterpriseInternal: boolean;
   createDate: number;
 }
+
+// 以工料机五大项为key,映射表
+export interface IGljKeyMap {
+  [key: string]: IBaseGlj;
+}