修改了基础数据-获取地区列表的路由,新增了新增地区、修改地区

This commit is contained in:
2024-06-03 09:56:26 +08:00
parent adb89dd9a1
commit cbe044f1ef
7 changed files with 275 additions and 64 deletions
+6 -1
View File
@@ -17,6 +17,7 @@ type Api struct {
exportManage // 导出管理
productManage // 商品管理
couponManage // 优惠卷管理
basicManage // 基础数据管理
}
// SysSetting 系统设置
@@ -41,7 +42,6 @@ type basic struct {
Hospital // 医院管理
DiseaseClassExpertise // 专长管理
Bank // 银行管理
Area // 省市区管理
}
// 订单管理
@@ -97,3 +97,8 @@ type productManage struct {
type couponManage struct {
Coupon
}
// 基础数据管理
type basicManage struct {
Basic
}