| | |
| | | [key: string]: any; |
| | | } |
| | | |
| | | interface BasicdataBuyerEntity { |
| | | /** |
| | | * ID |
| | | */ |
| | | id?: number; |
| | | |
| | | /** |
| | | * 部门ID |
| | | */ |
| | | departmentId?: BigInt; |
| | | |
| | | /** |
| | | * 代码 |
| | | */ |
| | | code?: string; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | name?: string; |
| | | |
| | | /** |
| | | * 地址 |
| | | */ |
| | | address?: string; |
| | | |
| | | /** |
| | | * 联系人 |
| | | */ |
| | | contact?: string; |
| | | |
| | | /** |
| | | * 联系电话 |
| | | */ |
| | | phone?: string; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | remark?: string; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | createTime?: string; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | updateTime?: string; |
| | | |
| | | /** |
| | | * 部门名称 |
| | | */ |
| | | departmentName?: string; |
| | | |
| | | /** |
| | | * 任意键值 |
| | | */ |
| | | [key: string]: any; |
| | | } |
| | | |
| | | interface BasicdataDriverEntity { |
| | | /** |
| | | * ID |
| | |
| | | * 更新时间 |
| | | */ |
| | | updateTime?: string; |
| | | |
| | | /** |
| | | * 任意键值 |
| | | */ |
| | | [key: string]: any; |
| | | } |
| | | |
| | | interface OperationWastesaleEntity { |
| | | /** |
| | | * ID |
| | | */ |
| | | id?: number; |
| | | |
| | | /** |
| | | * 部门ID |
| | | */ |
| | | departmentId?: BigInt; |
| | | |
| | | /** |
| | | * 收集点ID |
| | | */ |
| | | siteId?: string; |
| | | |
| | | /** |
| | | * 垃圾种类 |
| | | */ |
| | | wasteCode?: string; |
| | | |
| | | /** |
| | | * 日期时间 |
| | | */ |
| | | dateTime?: Date; |
| | | |
| | | /** |
| | | * 重量 |
| | | */ |
| | | weight?: number; |
| | | |
| | | /** |
| | | * 单价 |
| | | */ |
| | | unitPrice?: number; |
| | | |
| | | /** |
| | | * 总价 |
| | | */ |
| | | totalPrice?: number; |
| | | |
| | | /** |
| | | * 经手人ID |
| | | */ |
| | | handlerId?: BigInt; |
| | | |
| | | /** |
| | | * 收购方代码 |
| | | */ |
| | | buyerCode?: string; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | createTime?: string; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | updateTime?: string; |
| | | |
| | | /** |
| | | * 部门名称 |
| | | */ |
| | | departmentName?: string; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | siteName?: string; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | wasteName?: string; |
| | | |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | handlerName?: string; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | buyerName?: string; |
| | | |
| | | /** |
| | | * 任意键值 |
| | |
| | | list: BasicdataWastetypeEntity[]; |
| | | } |
| | | |
| | | interface BasicdataBuyerPageResponse { |
| | | pagination: PagePagination; |
| | | list: BasicdataBuyerEntity[]; |
| | | } |
| | | |
| | | interface DemoGoodsPageResponse { |
| | | pagination: PagePagination; |
| | | list: DemoGoodsEntity[]; |
| | |
| | | list: PushCameraGpsEntity[]; |
| | | } |
| | | |
| | | interface PushDeviceonoffPageResponse { |
| | | pagination: PagePagination; |
| | | list: PushDeviceOnoffEntity[]; |
| | | } |
| | | |
| | | interface PushSiteweightPageResponse { |
| | | pagination: PagePagination; |
| | | list: PushSiteweightEntity[]; |
| | |
| | | interface PushWeightPageResponse { |
| | | pagination: PagePagination; |
| | | list: PushWeightEntity[]; |
| | | } |
| | | |
| | | interface PushDeviceonoffPageResponse { |
| | | pagination: PagePagination; |
| | | list: PushDeviceOnoffEntity[]; |
| | | } |
| | | |
| | | interface RecycleDataPageResponse { |
| | |
| | | interface UserInfoPageResponse { |
| | | pagination: PagePagination; |
| | | list: UserInfoEntity[]; |
| | | } |
| | | |
| | | interface OperationWastesalePageResponse { |
| | | pagination: PagePagination; |
| | | list: OperationWastesaleEntity[]; |
| | | } |
| | | |
| | | interface BaseCoding { |
| | |
| | | request: Request; |
| | | } |
| | | |
| | | interface BasicdataBuyer { |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 修改 |
| | | */ |
| | | update(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 单个信息 |
| | | */ |
| | | info(data?: any): Promise<BasicdataBuyerEntity>; |
| | | |
| | | /** |
| | | * 列表查询 |
| | | */ |
| | | list(data?: any): Promise<BasicdataBuyerEntity[]>; |
| | | |
| | | /** |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<BasicdataBuyerPageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | | */ |
| | | 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 DemoGoods { |
| | | /** |
| | | * 删除 |
| | |
| | | request: Request; |
| | | } |
| | | |
| | | interface PushDeviceonoff { |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 修改 |
| | | */ |
| | | update(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 单个信息 |
| | | */ |
| | | info(data?: any): Promise<PushDeviceOnoffEntity>; |
| | | |
| | | /** |
| | | * 列表查询 |
| | | */ |
| | | list(data?: any): Promise<PushDeviceOnoffEntity[]>; |
| | | |
| | | /** |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<PushDeviceonoffPageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | | */ |
| | | 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 PushSiteweight { |
| | | /** |
| | | * 删除 |
| | |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<PushWeightPageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | | */ |
| | | 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 PushDeviceonoff { |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 修改 |
| | | */ |
| | | update(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 单个信息 |
| | | */ |
| | | info(data?: any): Promise<PushDeviceOnoffEntity>; |
| | | |
| | | /** |
| | | * 列表查询 |
| | | */ |
| | | list(data?: any): Promise<PushDeviceOnoffEntity[]>; |
| | | |
| | | /** |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<PushDeviceonoffPageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | |
| | | request: Request; |
| | | } |
| | | |
| | | interface OperationWastesale { |
| | | /** |
| | | * 删除 |
| | | */ |
| | | delete(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 修改 |
| | | */ |
| | | update(data?: any): Promise<any>; |
| | | |
| | | /** |
| | | * 单个信息 |
| | | */ |
| | | info(data?: any): Promise<OperationWastesaleEntity>; |
| | | |
| | | /** |
| | | * 列表查询 |
| | | */ |
| | | list(data?: any): Promise<OperationWastesaleEntity[]>; |
| | | |
| | | /** |
| | | * 分页查询 |
| | | */ |
| | | page(data?: any): Promise<OperationWastesalePageResponse>; |
| | | |
| | | /** |
| | | * 新增 |
| | | */ |
| | | 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 RequestOptions { |
| | | url: string; |
| | | method?: "OPTIONS" | "GET" | "HEAD" | "POST" | "PUT" | "DELETE" | "TRACE" | "CONNECT"; |
| | |
| | | sorter: BasicdataSorter; |
| | | vehicle: BasicdataVehicle; |
| | | wastetype: BasicdataWastetype; |
| | | buyer: BasicdataBuyer; |
| | | }; |
| | | demo: { goods: DemoGoods; tenant: DemoTenant }; |
| | | dict: { info: DictInfo; type: DictType }; |
| | |
| | | push: { |
| | | auditlog: PushAuditlog; |
| | | cameragps: PushCameragps; |
| | | deviceonoff: PushDeviceonoff; |
| | | siteweight: PushSiteweight; |
| | | vehiclegps: PushVehiclegps; |
| | | weight: PushWeight; |
| | | deviceonoff: PushDeviceonoff; |
| | | }; |
| | | recycle: { data: RecycleData }; |
| | | space: { info: SpaceInfo; type: SpaceType }; |
| | | task: { info: TaskInfo }; |
| | | user: { address: UserAddress; info: UserInfo }; |
| | | operation: { wastesale: OperationWastesale }; |
| | | }; |
| | | } |