6 changed files with 84 additions and 6 deletions
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
|
||||
/** |
||||
* @program: kicc-ui |
||||
* @description: 地图物流任务标记点表实体类 |
||||
* @author: entfrm开发团队-王翔 |
||||
* @since: 2022/8/24 |
||||
*/ |
||||
|
||||
import type { R } from '/#/axios'; |
||||
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
||||
|
||||
export type MapLogisticPointParams = Page & MapLogisticPoint; |
||||
|
||||
export interface MapLogisticPoint extends CommonEntity { |
||||
id: string; |
||||
hospitalId: string; |
||||
hospitalName: string; |
||||
lng: number; |
||||
lat: number; |
||||
sort: number; |
||||
type: string; |
||||
taskType: string; |
||||
batchCode: string; |
||||
mapLogisticId: string; |
||||
mapTaskId: string; |
||||
key: string; |
||||
version: number; |
||||
} |
||||
|
||||
export type MapLogisticPointResult = R<MapLogisticPoint[]>; |
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
|
||||
/** |
||||
* @program: kicc-ui |
||||
* @description: 地图任务表实体类 |
||||
* @author: entfrm开发团队-王翔 |
||||
* @since: 2022/8/24 |
||||
*/ |
||||
|
||||
import type { R } from '/#/axios'; |
||||
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
||||
import type { MapTaskPreset } from './mapTaskPreset'; |
||||
|
||||
export type MapTaskParams = Page & MapTask; |
||||
|
||||
export interface MapTask extends CommonEntity { |
||||
id: string; |
||||
name: string; |
||||
sort: number; |
||||
taskType: string; |
||||
hospitalId: string; |
||||
hospitalName: string; |
||||
hospitalLng: number; |
||||
hospitalLat: number; |
||||
orgId: string; |
||||
orgName: string; |
||||
orgLng: number; |
||||
orgLat: number; |
||||
courierUserId: string; |
||||
fileId: string; |
||||
estimateTime: string; |
||||
requireTime: string; |
||||
batchCode: string; |
||||
mapLogisticId: string; |
||||
key: string; |
||||
version: number; |
||||
mapTaskPreset: MapTaskPreset[] |
||||
} |
||||
|
||||
export type MapTaskResult = R<MapTask[]>; |
Loading…
Reference in new issue