This commit is contained in:
chashaobao
2025-10-15 20:44:20 +08:00
parent 7ba04b27ff
commit 3d2b121b92
23 changed files with 724 additions and 65 deletions

View File

@ -20,3 +20,14 @@ export interface GetCityCodeRequest {
latitude: number; // 纬度,浮点数,范围为-90~90负数表示南纬
longitude: number; // 经度,范围为-180~180负数表示西经
}
export interface CityOperatorListItem {
id: number;
staffId: number;
staffName: string;
cityName: string;
cityCode: string;
groupLink: string;
created: string;
updated: string;
}