wangzhibo
2026-07-28 fa9b89139f34809b7bf01ca2052fbaa3d1ea64e6
build/cool/eps.d.ts
@@ -1071,6 +1071,98 @@
      [key: string]: any;
   }
   interface OperationTradeRecordEntity {
      /**
       * ID
       */
      id?: number;
      /**
       * 交易时间
       */
      transactionTime?: Date;
      /**
       * 交易类型
       */
      transactionType?: string;
      /**
       * 交易对方
       */
      opponent?: string;
      /**
       * 商品名称
       */
      goodsName?: string;
      /**
       * 收支类型
       */
      incomeType?: string;
      /**
       * 金额
       */
      amount?: number;
      /**
       * 支付方式
       */
      payMethod?: string;
      /**
       * 当前状态
       */
      status?: string;
      /**
       * 交易单号
       */
      transactionNo?: string;
      /**
       * 商户单号
       */
      merchantNo?: string;
      /**
       * 备注
       */
      remark?: string;
      /**
       * 所属部门
       */
      departmentId?: number;
      /**
       * 原始文件路径
       */
      filepath?: string;
      /**
       * 创建时间
       */
      createTime?: string;
      /**
       * 更新时间
       */
      updateTime?: string;
      /**
       * 部门名称
       */
      departmentName?: string;
      /**
       * 任意键值
       */
      [key: string]: any;
   }
   interface OperationWastesaleEntity {
      /**
       * ID
@@ -2385,6 +2477,108 @@
      [key: string]: any;
   }
   interface ReportDailyVehicleEntity {
      /**
       * ID
       */
      id?: number;
      /**
       * 日期
       */
      date?: Date;
      /**
       * 车牌号
       */
      vehicleNo?: string;
      /**
       * 所属部门/学校/后勤组ID
       */
      departmentId?: number;
      /**
       * 当日行驶里程(km)
       */
      totalKm?: number;
      /**
       * 未启动时间(分钟)
       */
      minutesOffline?: number;
      /**
       * 纯行驶时长(分钟)
       */
      minutesMoving?: number;
      /**
       * 停车时长(分钟)
       */
      minutesParked?: number;
      /**
       * 异常怠速时长(分钟)
       */
      minutesAbnormalIdle?: number;
      /**
       * 平均行驶车速(km/h)
       */
      avgSpeed?: number;
      /**
       * 超速告警次数
       */
      overspeedCount?: number;
      /**
       * 超速累计时长(秒)
       */
      overspeedDurationSec?: number;
      /**
       * 急刹车次数
       */
      harshBrakeCount?: number;
      /**
       * 急加速次数
       */
      harshAccelCount?: number;
      /**
       * 急转弯次数
       */
      harshTurnCount?: number;
      /**
       * 非工作时段异动告警次数
       */
      offHoursMoveCount?: number;
      /**
       * 创建时间
       */
      createTime?: string;
      /**
       * 更新时间
       */
      updateTime?: string;
      /**
       * 部门名称
       */
      departmentName?: string;
      /**
       * 任意键值
       */
      [key: string]: any;
   }
   interface ReportJoblogEntity {
      /**
       * ID
@@ -2779,9 +2973,6 @@
   type json = any;
   type DictKey =
      "ratedpayload" | "iottype" | "sitetype" | "datachanel" | "vehicletype" | "businesstype";
   interface PagePagination {
      size: number;
      page: number;
@@ -2870,6 +3061,11 @@
      list: DictTypeEntity[];
   }
   interface OperationTraderecordPageResponse {
      pagination: PagePagination;
      list: OperationTradeRecordEntity[];
   }
   interface OperationWastesalePageResponse {
      pagination: PagePagination;
      list: OperationWastesaleEntity[];
@@ -2928,6 +3124,11 @@
   interface ReportDailysitePageResponse {
      pagination: PagePagination;
      list: ReportDailysiteEntity[];
   }
   interface ReportDailyvehiclePageResponse {
      pagination: PagePagination;
      list: ReportDailyVehicleEntity[];
   }
   interface ReportJoblogPageResponse {
@@ -4095,6 +4296,71 @@
      request: Request;
   }
   interface OperationTraderecord {
      /**
       * 导入账单
       */
      import(data?: any): Promise<any>;
      /**
       * 删除
       */
      delete(data?: any): Promise<any>;
      /**
       * 修改
       */
      update(data?: any): Promise<any>;
      /**
       * 单个信息
       */
      info(data?: any): Promise<OperationTradeRecordEntity>;
      /**
       * 列表查询
       */
      list(data?: any): Promise<OperationTradeRecordEntity[]>;
      /**
       * 分页查询
       */
      page(data?: any): Promise<OperationTraderecordPageResponse>;
      /**
       * 新增
       */
      add(data?: any): Promise<any>;
      /**
       * 权限标识
       */
      permission: {
         import: string;
         delete: string;
         update: string;
         info: string;
         list: string;
         page: string;
         add: string;
      };
      /**
       * 权限状态
       */
      _permission: {
         import: boolean;
         delete: boolean;
         update: boolean;
         info: boolean;
         list: boolean;
         page: boolean;
         add: boolean;
      };
      request: Request;
   }
   interface OperationWastesale {
      /**
       * 删除
@@ -4769,6 +5035,64 @@
      request: Request;
   }
   interface ReportDailyvehicle {
      /**
       * 删除
       */
      delete(data?: any): Promise<any>;
      /**
       * 修改
       */
      update(data?: any): Promise<any>;
      /**
       * 单个信息
       */
      info(data?: any): Promise<ReportDailyVehicleEntity>;
      /**
       * 列表查询
       */
      list(data?: any): Promise<ReportDailyVehicleEntity[]>;
      /**
       * 分页查询
       */
      page(data?: any): Promise<ReportDailyvehiclePageResponse>;
      /**
       * 新增
       */
      add(data?: any): Promise<any>;
      /**
       * 权限标识
       */
      permission: {
         delete: string;
         update: string;
         info: string;
         list: string;
         page: string;
         add: string;
      };
      /**
       * 权限状态
       */
      _permission: {
         delete: boolean;
         update: boolean;
         info: boolean;
         list: boolean;
         page: boolean;
         add: boolean;
      };
      request: Request;
   }
   interface ReportJoblog {
      /**
       * 删除
@@ -5178,7 +5502,7 @@
      demo: { goods: DemoGoods; tenant: DemoTenant };
      dict: { info: DictInfo; type: DictType };
      monitor: { ys7: MonitorYs7 };
      operation: { wastesale: OperationWastesale };
      operation: { traderecord: OperationTraderecord; wastesale: OperationWastesale };
      plugin: { info: PluginInfo };
      push: {
         auditlog: PushAuditlog;
@@ -5193,6 +5517,7 @@
      report: {
         dailydepartment: ReportDailydepartment;
         dailysite: ReportDailysite;
         dailyvehicle: ReportDailyvehicle;
         joblog: ReportJoblog;
      };
      space: { info: SpaceInfo; type: SpaceType };