You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
636 B
30 lines
636 B
/** |
|
* @program: kicc-ui |
|
* @description: 区域实体类 |
|
* 类型定义 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2022/4/8 |
|
*/ |
|
import type { R } from '/#/axios'; |
|
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
/** 区域查询参数 */ |
|
export type AreaParams = Page & Area; |
|
|
|
/** 区域对象 */ |
|
export interface Area extends CommonEntity { |
|
areaId: string; |
|
code: string; |
|
name: string; |
|
parentId: string; |
|
sort: number; |
|
contacts: string; |
|
phone: string; |
|
address: string; |
|
email: string; |
|
status: string; |
|
[key: string]: any; |
|
} |
|
|
|
/** 区域响应对象 */ |
|
export type AreaResult = R<Area[]>;
|
|
|