/** * @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;