康来智慧冷链系统 - 前端
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.
 
 
 
 
 

20 lines
417 B

/**
* @program: kicc-ui
* @description: 区域实体类
* 类型定义
* @author: wangxiang4
* @create: 2022/4/8
*/
import type { R } from '/#/axios';
import type { TreeEntity, Page } from '/@/api/common/data/entity';
export type RegionParams = Region & Page;
export interface Region extends TreeEntity {
code: string;
level: number;
[key: string]: any
}
export type RegionResult = R<Region[]>;