| | |
| | | [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 |
| | |
| | | |
| | | type json = any; |
| | | |
| | | type DictKey = |
| | | | "ratedpayload" |
| | | | "iottype" |
| | | | "sitetype" |
| | | | "datachanel" |
| | | | "vehicletype" |
| | | | "businesstype" |
| | | | "appointmentslot"; |
| | | |
| | | interface PagePagination { |
| | | size: number; |
| | | page: number; |
| | |
| | | interface DictTypePageResponse { |
| | | pagination: PagePagination; |
| | | list: DictTypeEntity[]; |
| | | } |
| | | |
| | | interface MonitorCapturetaskPageResponse { |
| | | pagination: PagePagination; |
| | | list: PushCaptureTaskEntity[]; |
| | | } |
| | | |
| | | interface OperationTraderecordPageResponse { |
| | |
| | | |
| | | interface BaseSysParam { |
| | | /** |
| | | * 获得网页内容的参数值 |
| | | */ |
| | | stringbykey(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | |
| | | * 权限标识 |
| | | */ |
| | | permission: { |
| | | stringbykey: string; |
| | | delete: string; |
| | | update: string; |
| | | html: string; |
| | |
| | | * 权限状态 |
| | | */ |
| | | _permission: { |
| | | stringbykey: boolean; |
| | | delete: boolean; |
| | | update: boolean; |
| | | html: boolean; |
| | |
| | | getYsDevices(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 获取站点列表 |
| | | */ |
| | | getSitelist(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | |
| | | */ |
| | | permission: { |
| | | getYsDevices: string; |
| | | getSitelist: string; |
| | | delete: string; |
| | | update: string; |
| | | info: string; |
| | |
| | | */ |
| | | _permission: { |
| | | getYsDevices: boolean; |
| | | getSitelist: boolean; |
| | | delete: boolean; |
| | | update: boolean; |
| | | info: boolean; |
| | |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<DictTypePageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | | */ |
| | | 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 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>; |
| | | |
| | | /** |
| | | * 新增 |
| | |
| | | }; |
| | | demo: { goods: DemoGoods; tenant: DemoTenant }; |
| | | dict: { info: DictInfo; type: DictType }; |
| | | monitor: { ys7: MonitorYs7 }; |
| | | monitor: { capturetask: MonitorCapturetask; ys7: MonitorYs7 }; |
| | | operation: { traderecord: OperationTraderecord; wastesale: OperationWastesale }; |
| | | plugin: { info: PluginInfo }; |
| | | push: { |