| | |
| | | [key: string]: any; |
| | | } |
| | | |
| | | interface PushCaptureTaskEntity { |
| | | /** |
| | | * ID |
| | | */ |
| | | id?: number; |
| | | |
| | | /** |
| | | * 设备序列号 |
| | | */ |
| | | deviceSerial?: string; |
| | | |
| | | /** |
| | | * 通道号 |
| | | */ |
| | | channelNo?: number; |
| | | |
| | | /** |
| | | * 抓图任务ID(萤石返回) |
| | | */ |
| | | captureTaskId?: string; |
| | | |
| | | /** |
| | | * 云空间spaceId |
| | | */ |
| | | spaceId?: string; |
| | | |
| | | /** |
| | | * 图片在云空间的URL |
| | | */ |
| | | cloudUrl?: string; |
| | | |
| | | /** |
| | | * 图片在本地的URL |
| | | */ |
| | | localUrl?: string; |
| | | |
| | | /** |
| | | * 本地存储路径 |
| | | */ |
| | | localPath?: string; |
| | | |
| | | /** |
| | | * 抓拍状态 |
| | | */ |
| | | status?: string; |
| | | |
| | | /** |
| | | * 任务执行日期 |
| | | */ |
| | | captureDate?: string; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | createTime?: string; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | updateTime?: string; |
| | | |
| | | /** |
| | | * 任意键值 |
| | | */ |
| | | [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 |
| | |
| | | [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 |
| | |
| | | type json = any; |
| | | |
| | | type DictKey = |
| | | "ratedpayload" | "iottype" | "sitetype" | "datachanel" | "vehicletype" | "businesstype"; |
| | | | "ratedpayload" |
| | | | "iottype" |
| | | | "sitetype" |
| | | | "datachanel" |
| | | | "vehicletype" |
| | | | "businesstype" |
| | | | "appointmentslot"; |
| | | |
| | | interface PagePagination { |
| | | size: number; |
| | |
| | | list: DictTypeEntity[]; |
| | | } |
| | | |
| | | interface MonitorCapturetaskPageResponse { |
| | | pagination: PagePagination; |
| | | list: PushCaptureTaskEntity[]; |
| | | } |
| | | |
| | | interface OperationTraderecordPageResponse { |
| | | pagination: PagePagination; |
| | | list: OperationTradeRecordEntity[]; |
| | | } |
| | | |
| | | interface OperationWastesalePageResponse { |
| | | pagination: PagePagination; |
| | | list: OperationWastesaleEntity[]; |
| | |
| | | interface ReportDailysitePageResponse { |
| | | pagination: PagePagination; |
| | | list: ReportDailysiteEntity[]; |
| | | } |
| | | |
| | | interface ReportDailyvehiclePageResponse { |
| | | pagination: PagePagination; |
| | | list: ReportDailyVehicleEntity[]; |
| | | } |
| | | |
| | | interface ReportJoblogPageResponse { |
| | |
| | | request: Request; |
| | | } |
| | | |
| | | interface MonitorCapturetask { |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 修改 |
| | | */ |
| | | update(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 单个信息 |
| | | */ |
| | | info(data?: any): Promise<PushCaptureTaskEntity>; |
| | | |
| | | /** |
| | | * 列表查询 |
| | | */ |
| | | list(data?: any): Promise<PushCaptureTaskEntity[]>; |
| | | |
| | | /** |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<MonitorCapturetaskPageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | | */ |
| | | 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 MonitorYs7 { |
| | | /** |
| | | * getToken |
| | |
| | | * 权限状态 |
| | | */ |
| | | _permission: { getToken: boolean }; |
| | | |
| | | 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; |
| | | } |
| | |
| | | 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 { |
| | | /** |
| | | * 删除 |
| | |
| | | }; |
| | | demo: { goods: DemoGoods; tenant: DemoTenant }; |
| | | dict: { info: DictInfo; type: DictType }; |
| | | monitor: { ys7: MonitorYs7 }; |
| | | operation: { wastesale: OperationWastesale }; |
| | | monitor: { capturetask: MonitorCapturetask; ys7: MonitorYs7 }; |
| | | operation: { traderecord: OperationTraderecord; wastesale: OperationWastesale }; |
| | | plugin: { info: PluginInfo }; |
| | | push: { |
| | | auditlog: PushAuditlog; |
| | |
| | | report: { |
| | | dailydepartment: ReportDailydepartment; |
| | | dailysite: ReportDailysite; |
| | | dailyvehicle: ReportDailyvehicle; |
| | | joblog: ReportJoblog; |
| | | }; |
| | | space: { info: SpaceInfo; type: SpaceType }; |