初版代码’
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
|
||||
export interface CityAreaVO {
|
||||
/**
|
||||
* 主键ID
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 城市编码
|
||||
*/
|
||||
@@ -36,6 +41,11 @@ export interface CityAreaVO {
|
||||
*/
|
||||
lat: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState: number;
|
||||
|
||||
}
|
||||
|
||||
export interface CityAreaForm extends BaseEntity {
|
||||
@@ -79,6 +89,11 @@ export interface CityAreaForm extends BaseEntity {
|
||||
*/
|
||||
lat?: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
}
|
||||
|
||||
export interface CityAreaQuery extends PageQuery {
|
||||
@@ -117,6 +132,11 @@ export interface CityAreaQuery extends PageQuery {
|
||||
*/
|
||||
lat?: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
|
Reference in New Issue
Block a user