fix
This commit is contained in:
@@ -26,9 +26,9 @@ package [模块名]
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"hm-server/app/main/api/internal/svc"
|
"tydata-server/app/main/api/internal/svc"
|
||||||
"hm-server/app/main/api/internal/types"
|
"tydata-server/app/main/api/internal/types"
|
||||||
"hm-server/common/xerr"
|
"tydata-server/common/xerr"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"github.com/zeromicro/go-zero/core/logx"
|
"github.com/zeromicro/go-zero/core/logx"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
项目目录结构说明:
|
项目目录结构说明:
|
||||||
```
|
```
|
||||||
hm-server/ # 项目根目录
|
tydata-server/ # 项目根目录
|
||||||
├── app/ # 应用服务目录
|
├── app/ # 应用服务目录
|
||||||
│ └── user/ # 用户服务
|
│ └── user/ # 用户服务
|
||||||
│ ├── cmd/ # 服务启动入口
|
│ ├── cmd/ # 服务启动入口
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ info (
|
|||||||
@server(
|
@server(
|
||||||
prefix: /api/v1/admin/agent
|
prefix: /api/v1/admin/agent
|
||||||
group: admin_agent
|
group: admin_agent
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
// 代理分页查询
|
// 代理分页查询
|
||||||
|
|||||||
131
app/main/api/desc/admin/admin_api.api
Normal file
131
app/main/api/desc/admin/admin_api.api
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
syntax = "v1"
|
||||||
|
|
||||||
|
info(
|
||||||
|
title: "Admin API管理"
|
||||||
|
desc: "管理员API管理接口"
|
||||||
|
author: "team"
|
||||||
|
version: "v1"
|
||||||
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
// API列表请求
|
||||||
|
AdminGetApiListReq {
|
||||||
|
Page int64 `form:"page,default=1"`
|
||||||
|
PageSize int64 `form:"page_size,default=20"`
|
||||||
|
ApiName string `form:"api_name,optional"`
|
||||||
|
Method string `form:"method,optional"`
|
||||||
|
Status int64 `form:"status,optional"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// API列表响应
|
||||||
|
AdminGetApiListResp {
|
||||||
|
Items []AdminApiInfo `json:"items"`
|
||||||
|
Total int64 `json:"total"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// API信息
|
||||||
|
AdminApiInfo {
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
ApiName string `json:"api_name"`
|
||||||
|
ApiCode string `json:"api_code"`
|
||||||
|
Method string `json:"method"`
|
||||||
|
Url string `json:"url"`
|
||||||
|
Status int64 `json:"status"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
CreateTime string `json:"create_time"`
|
||||||
|
UpdateTime string `json:"update_time"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// API详情请求
|
||||||
|
AdminGetApiDetailReq {
|
||||||
|
Id int64 `path:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// API详情响应
|
||||||
|
AdminGetApiDetailResp {
|
||||||
|
AdminApiInfo
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建API请求
|
||||||
|
AdminCreateApiReq {
|
||||||
|
ApiName string `json:"api_name"`
|
||||||
|
ApiCode string `json:"api_code"`
|
||||||
|
Method string `json:"method"`
|
||||||
|
Url string `json:"url"`
|
||||||
|
Status int64 `json:"status,default=1"`
|
||||||
|
Description string `json:"description,optional"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建API响应
|
||||||
|
AdminCreateApiResp {
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新API请求
|
||||||
|
AdminUpdateApiReq {
|
||||||
|
Id int64 `path:"id"`
|
||||||
|
ApiName string `json:"api_name"`
|
||||||
|
ApiCode string `json:"api_code"`
|
||||||
|
Method string `json:"method"`
|
||||||
|
Url string `json:"url"`
|
||||||
|
Status int64 `json:"status"`
|
||||||
|
Description string `json:"description,optional"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新API响应
|
||||||
|
AdminUpdateApiResp {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除API请求
|
||||||
|
AdminDeleteApiReq {
|
||||||
|
Id int64 `path:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除API响应
|
||||||
|
AdminDeleteApiResp {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 批量更新API状态请求
|
||||||
|
AdminBatchUpdateApiStatusReq {
|
||||||
|
Ids []int64 `json:"ids"`
|
||||||
|
Status int64 `json:"status"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 批量更新API状态响应
|
||||||
|
AdminBatchUpdateApiStatusResp {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
@server (
|
||||||
|
prefix: api/v1
|
||||||
|
group: admin_api
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
|
)
|
||||||
|
service main {
|
||||||
|
// 获取API列表
|
||||||
|
@handler AdminGetApiList
|
||||||
|
get /admin/api/list (AdminGetApiListReq) returns (AdminGetApiListResp)
|
||||||
|
|
||||||
|
// 获取API详情
|
||||||
|
@handler AdminGetApiDetail
|
||||||
|
get /admin/api/detail/:id (AdminGetApiDetailReq) returns (AdminGetApiDetailResp)
|
||||||
|
|
||||||
|
// 创建API
|
||||||
|
@handler AdminCreateApi
|
||||||
|
post /admin/api/create (AdminCreateApiReq) returns (AdminCreateApiResp)
|
||||||
|
|
||||||
|
// 更新API
|
||||||
|
@handler AdminUpdateApi
|
||||||
|
put /admin/api/update/:id (AdminUpdateApiReq) returns (AdminUpdateApiResp)
|
||||||
|
|
||||||
|
// 删除API
|
||||||
|
@handler AdminDeleteApi
|
||||||
|
delete /admin/api/delete/:id (AdminDeleteApiReq) returns (AdminDeleteApiResp)
|
||||||
|
|
||||||
|
// 批量更新API状态
|
||||||
|
@handler AdminBatchUpdateApiStatus
|
||||||
|
put /admin/api/batch-update-status (AdminBatchUpdateApiStatusReq) returns (AdminBatchUpdateApiStatusResp)
|
||||||
|
}
|
||||||
@@ -7,9 +7,10 @@ info (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// 功能管理接口
|
// 功能管理接口
|
||||||
@server(
|
@server (
|
||||||
prefix: /api/v1/admin/feature
|
prefix: /api/v1/admin/feature
|
||||||
group: admin_feature
|
group: admin_feature
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
// 创建功能
|
// 创建功能
|
||||||
@@ -31,76 +32,97 @@ service main {
|
|||||||
// 获取功能详情
|
// 获取功能详情
|
||||||
@handler AdminGetFeatureDetail
|
@handler AdminGetFeatureDetail
|
||||||
get /detail/:id (AdminGetFeatureDetailReq) returns (AdminGetFeatureDetailResp)
|
get /detail/:id (AdminGetFeatureDetailReq) returns (AdminGetFeatureDetailResp)
|
||||||
|
|
||||||
|
// 配置功能示例数据
|
||||||
|
@handler AdminConfigFeatureExample
|
||||||
|
post /config-example (AdminConfigFeatureExampleReq) returns (AdminConfigFeatureExampleResp)
|
||||||
|
|
||||||
|
// 查看功能示例数据
|
||||||
|
@handler AdminGetFeatureExample
|
||||||
|
get /example/:feature_id (AdminGetFeatureExampleReq) returns (AdminGetFeatureExampleResp)
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
// 创建功能请求
|
// 创建功能请求
|
||||||
AdminCreateFeatureReq {
|
AdminCreateFeatureReq {
|
||||||
ApiId string `json:"api_id"` // API标识
|
ApiId string `json:"api_id"` // API标识
|
||||||
Name string `json:"name"` // 描述
|
Name string `json:"name"` // 描述
|
||||||
}
|
}
|
||||||
|
|
||||||
// 创建功能响应
|
// 创建功能响应
|
||||||
AdminCreateFeatureResp {
|
AdminCreateFeatureResp {
|
||||||
Id int64 `json:"id"` // 功能ID
|
Id int64 `json:"id"` // 功能ID
|
||||||
}
|
}
|
||||||
|
|
||||||
// 更新功能请求
|
// 更新功能请求
|
||||||
AdminUpdateFeatureReq {
|
AdminUpdateFeatureReq {
|
||||||
Id int64 `path:"id"` // 功能ID
|
Id int64 `path:"id"` // 功能ID
|
||||||
ApiId *string `json:"api_id,optional"` // API标识
|
ApiId *string `json:"api_id,optional"` // API标识
|
||||||
Name *string `json:"name,optional"` // 描述
|
Name *string `json:"name,optional"` // 描述
|
||||||
}
|
}
|
||||||
|
|
||||||
// 更新功能响应
|
// 更新功能响应
|
||||||
AdminUpdateFeatureResp {
|
AdminUpdateFeatureResp {
|
||||||
Success bool `json:"success"` // 是否成功
|
Success bool `json:"success"` // 是否成功
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除功能请求
|
// 删除功能请求
|
||||||
AdminDeleteFeatureReq {
|
AdminDeleteFeatureReq {
|
||||||
Id int64 `path:"id"` // 功能ID
|
Id int64 `path:"id"` // 功能ID
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除功能响应
|
// 删除功能响应
|
||||||
AdminDeleteFeatureResp {
|
AdminDeleteFeatureResp {
|
||||||
Success bool `json:"success"` // 是否成功
|
Success bool `json:"success"` // 是否成功
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取功能列表请求
|
// 获取功能列表请求
|
||||||
AdminGetFeatureListReq {
|
AdminGetFeatureListReq {
|
||||||
Page int64 `form:"page"` // 页码
|
Page int64 `form:"page"` // 页码
|
||||||
PageSize int64 `form:"pageSize"` // 每页数量
|
PageSize int64 `form:"pageSize"` // 每页数量
|
||||||
ApiId *string `form:"api_id,optional"` // API标识
|
ApiId *string `form:"api_id,optional"` // API标识
|
||||||
Name *string `form:"name,optional"` // 描述
|
Name *string `form:"name,optional"` // 描述
|
||||||
}
|
}
|
||||||
|
|
||||||
// 功能列表项
|
// 功能列表项
|
||||||
FeatureListItem {
|
FeatureListItem {
|
||||||
Id int64 `json:"id"` // 功能ID
|
Id int64 `json:"id"` // 功能ID
|
||||||
ApiId string `json:"api_id"` // API标识
|
ApiId string `json:"api_id"` // API标识
|
||||||
Name string `json:"name"` // 描述
|
Name string `json:"name"` // 描述
|
||||||
CreateTime string `json:"create_time"` // 创建时间
|
CreateTime string `json:"create_time"` // 创建时间
|
||||||
UpdateTime string `json:"update_time"` // 更新时间
|
UpdateTime string `json:"update_time"` // 更新时间
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取功能列表响应
|
// 获取功能列表响应
|
||||||
AdminGetFeatureListResp {
|
AdminGetFeatureListResp {
|
||||||
Total int64 `json:"total"` // 总数
|
Total int64 `json:"total"` // 总数
|
||||||
Items []FeatureListItem `json:"items"` // 列表数据
|
Items []FeatureListItem `json:"items"` // 列表数据
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取功能详情请求
|
// 获取功能详情请求
|
||||||
AdminGetFeatureDetailReq {
|
AdminGetFeatureDetailReq {
|
||||||
Id int64 `path:"id"` // 功能ID
|
Id int64 `path:"id"` // 功能ID
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取功能详情响应
|
// 获取功能详情响应
|
||||||
AdminGetFeatureDetailResp {
|
AdminGetFeatureDetailResp {
|
||||||
Id int64 `json:"id"` // 功能ID
|
Id int64 `json:"id"` // 功能ID
|
||||||
ApiId string `json:"api_id"` // API标识
|
ApiId string `json:"api_id"` // API标识
|
||||||
Name string `json:"name"` // 描述
|
Name string `json:"name"` // 描述
|
||||||
CreateTime string `json:"create_time"` // 创建时间
|
CreateTime string `json:"create_time"` // 创建时间
|
||||||
UpdateTime string `json:"update_time"` // 更新时间
|
UpdateTime string `json:"update_time"` // 更新时间
|
||||||
}
|
}
|
||||||
)
|
// 配置功能示例数据请求
|
||||||
|
AdminConfigFeatureExampleReq {
|
||||||
|
FeatureId int64 `json:"feature_id"` // 功能ID
|
||||||
|
Data string `json:"data"` // 示例数据JSON
|
||||||
|
}
|
||||||
|
// 配置功能示例数据响应
|
||||||
|
AdminConfigFeatureExampleResp {
|
||||||
|
Success bool `json:"success"` // 是否成功
|
||||||
|
}
|
||||||
|
// 查看功能示例数据请求
|
||||||
|
AdminGetFeatureExampleReq {
|
||||||
|
FeatureId int64 `path:"feature_id"` // 功能ID
|
||||||
|
}
|
||||||
|
// 查看功能示例数据响应
|
||||||
|
AdminGetFeatureExampleResp {
|
||||||
|
Id int64 `json:"id"` // 示例数据ID
|
||||||
|
FeatureId int64 `json:"feature_id"` // 功能ID
|
||||||
|
ApiId string `json:"api_id"` // API标识
|
||||||
|
Data string `json:"data"` // 示例数据JSON
|
||||||
|
CreateTime string `json:"create_time"` // 创建时间
|
||||||
|
UpdateTime string `json:"update_time"` // 更新时间
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ info (
|
|||||||
@server(
|
@server(
|
||||||
prefix: /api/v1/admin/product
|
prefix: /api/v1/admin/product
|
||||||
group: admin_product
|
group: admin_product
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
// 创建产品
|
// 创建产品
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ info (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/query
|
prefix: api/v1/admin/query
|
||||||
group: admin_query
|
group: admin_query
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取查询详情"
|
@doc "获取查询详情"
|
||||||
|
|||||||
103
app/main/api/desc/admin/admin_role_api.api
Normal file
103
app/main/api/desc/admin/admin_role_api.api
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
syntax = "v1"
|
||||||
|
|
||||||
|
info(
|
||||||
|
title: "Admin 角色API权限管理"
|
||||||
|
desc: "管理员角色API权限管理接口"
|
||||||
|
author: "team"
|
||||||
|
version: "v1"
|
||||||
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
// 获取角色API权限列表请求
|
||||||
|
AdminGetRoleApiListReq {
|
||||||
|
RoleId int64 `path:"role_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取角色API权限列表响应
|
||||||
|
AdminGetRoleApiListResp {
|
||||||
|
Items []AdminRoleApiInfo `json:"items"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 角色API权限信息
|
||||||
|
AdminRoleApiInfo {
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
RoleId int64 `json:"role_id"`
|
||||||
|
ApiId int64 `json:"api_id"`
|
||||||
|
ApiName string `json:"api_name"`
|
||||||
|
ApiCode string `json:"api_code"`
|
||||||
|
Method string `json:"method"`
|
||||||
|
Url string `json:"url"`
|
||||||
|
Status int64 `json:"status"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分配角色API权限请求
|
||||||
|
AdminAssignRoleApiReq {
|
||||||
|
RoleId int64 `json:"role_id"`
|
||||||
|
ApiIds []int64 `json:"api_ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分配角色API权限响应
|
||||||
|
AdminAssignRoleApiResp {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 移除角色API权限请求
|
||||||
|
AdminRemoveRoleApiReq {
|
||||||
|
RoleId int64 `json:"role_id"`
|
||||||
|
ApiIds []int64 `json:"api_ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 移除角色API权限响应
|
||||||
|
AdminRemoveRoleApiResp {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新角色API权限请求
|
||||||
|
AdminUpdateRoleApiReq {
|
||||||
|
RoleId int64 `json:"role_id"`
|
||||||
|
ApiIds []int64 `json:"api_ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新角色API权限响应
|
||||||
|
AdminUpdateRoleApiResp {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取所有API列表(用于权限分配)
|
||||||
|
AdminGetAllApiListReq {
|
||||||
|
Status int64 `form:"status,optional,default=1"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取所有API列表响应
|
||||||
|
AdminGetAllApiListResp {
|
||||||
|
Items []AdminRoleApiInfo `json:"items"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
@server (
|
||||||
|
prefix: api/v1
|
||||||
|
group: admin_role_api
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
|
)
|
||||||
|
service main {
|
||||||
|
// 获取角色API权限列表
|
||||||
|
@handler AdminGetRoleApiList
|
||||||
|
get /admin/role/:role_id/api/list (AdminGetRoleApiListReq) returns (AdminGetRoleApiListResp)
|
||||||
|
|
||||||
|
// 分配角色API权限
|
||||||
|
@handler AdminAssignRoleApi
|
||||||
|
post /admin/role/api/assign (AdminAssignRoleApiReq) returns (AdminAssignRoleApiResp)
|
||||||
|
|
||||||
|
// 移除角色API权限
|
||||||
|
@handler AdminRemoveRoleApi
|
||||||
|
post /admin/role/api/remove (AdminRemoveRoleApiReq) returns (AdminRemoveRoleApiResp)
|
||||||
|
|
||||||
|
// 更新角色API权限
|
||||||
|
@handler AdminUpdateRoleApi
|
||||||
|
put /admin/role/api/update (AdminUpdateRoleApiReq) returns (AdminUpdateRoleApiResp)
|
||||||
|
|
||||||
|
// 获取所有API列表(用于权限分配)
|
||||||
|
@handler AdminGetAllApiList
|
||||||
|
get /admin/api/all (AdminGetAllApiListReq) returns (AdminGetAllApiListResp)
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ info (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/user
|
prefix: api/v1/admin/user
|
||||||
group: admin_user
|
group: admin_user
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取用户列表"
|
@doc "获取用户列表"
|
||||||
@@ -35,6 +35,10 @@ service main {
|
|||||||
@doc "用户信息"
|
@doc "用户信息"
|
||||||
@handler AdminUserInfo
|
@handler AdminUserInfo
|
||||||
get /info (AdminUserInfoReq) returns (AdminUserInfoResp)
|
get /info (AdminUserInfoReq) returns (AdminUserInfoResp)
|
||||||
|
|
||||||
|
@doc "重置管理员密码"
|
||||||
|
@handler AdminResetPassword
|
||||||
|
put /reset-password/:id (AdminResetPasswordReq) returns (AdminResetPasswordResp)
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -126,4 +130,15 @@ type (
|
|||||||
RealName string `json:"real_name"` // 真实姓名
|
RealName string `json:"real_name"` // 真实姓名
|
||||||
Roles []string `json:"roles"` // 角色编码列表
|
Roles []string `json:"roles"` // 角色编码列表
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 重置密码请求
|
||||||
|
AdminResetPasswordReq {
|
||||||
|
Id int64 `path:"id"` // 用户ID
|
||||||
|
Password string `json:"password"` // 新密码
|
||||||
|
}
|
||||||
|
|
||||||
|
// 重置密码响应
|
||||||
|
AdminResetPasswordResp {
|
||||||
|
Success bool `json:"success"` // 是否成功
|
||||||
|
}
|
||||||
)
|
)
|
||||||
@@ -9,7 +9,7 @@ info (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/menu
|
prefix: api/v1/admin/menu
|
||||||
group: admin_menu
|
group: admin_menu
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取菜单列表"
|
@doc "获取菜单列表"
|
||||||
|
|||||||
@@ -103,6 +103,7 @@ type (
|
|||||||
@server(
|
@server(
|
||||||
prefix: /api/v1/admin/notification
|
prefix: /api/v1/admin/notification
|
||||||
group: admin_notification
|
group: admin_notification
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
// 创建通知
|
// 创建通知
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ info (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/order
|
prefix: api/v1/admin/order
|
||||||
group: admin_order
|
group: admin_order
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取订单列表"
|
@doc "获取订单列表"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ info (
|
|||||||
@server(
|
@server(
|
||||||
prefix: /api/v1/admin/platform_user
|
prefix: /api/v1/admin/platform_user
|
||||||
group: admin_platform_user
|
group: admin_platform_user
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
// 创建平台用户
|
// 创建平台用户
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ info (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/promotion/link
|
prefix: api/v1/admin/promotion/link
|
||||||
group: admin_promotion
|
group: admin_promotion
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取推广链接列表"
|
@doc "获取推广链接列表"
|
||||||
@@ -115,6 +115,7 @@ type (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/promotion/link
|
prefix: api/v1/admin/promotion/link
|
||||||
group: admin_promotion
|
group: admin_promotion
|
||||||
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "记录链接点击"
|
@doc "记录链接点击"
|
||||||
@@ -136,7 +137,7 @@ type (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/promotion/stats
|
prefix: api/v1/admin/promotion/stats
|
||||||
group: admin_promotion
|
group: admin_promotion
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取推广历史记录"
|
@doc "获取推广历史记录"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ info (
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/admin/role
|
prefix: api/v1/admin/role
|
||||||
group: admin_role
|
group: admin_role
|
||||||
jwt: JwtAuth
|
middleware: AdminAuthInterceptor
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
@doc "获取角色列表"
|
@doc "获取角色列表"
|
||||||
|
|||||||
@@ -23,8 +23,6 @@ type Product {
|
|||||||
@server (
|
@server (
|
||||||
prefix: api/v1/product
|
prefix: api/v1/product
|
||||||
group: product
|
group: product
|
||||||
jwt: JwtAuth
|
|
||||||
middleware: UserAuthInterceptor
|
|
||||||
|
|
||||||
)
|
)
|
||||||
service main {
|
service main {
|
||||||
|
|||||||
@@ -27,3 +27,5 @@ import "./admin/admin_product.api"
|
|||||||
import "./admin/admin_feature.api"
|
import "./admin/admin_feature.api"
|
||||||
import "./admin/admin_query.api"
|
import "./admin/admin_query.api"
|
||||||
import "./admin/admin_agent.api"
|
import "./admin/admin_agent.api"
|
||||||
|
import "./admin/admin_api.api"
|
||||||
|
import "./admin/admin_role_api.api"
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
Name: main
|
Name: main
|
||||||
Host: 0.0.0.0
|
Host: 0.0.0.0
|
||||||
Port: 8888
|
Port: 8888
|
||||||
DataSource: "hm:3fgWpwELC21tIYTL@tcp(127.0.0.1:21001)/hm?charset=utf8mb4&parseTime=True&loc=Local"
|
DataSource: "tydata:5vg67b3UNHu8@tcp(127.0.0.1:21001)/tydata?charset=utf8mb4&parseTime=True&loc=Local"
|
||||||
CacheRedis:
|
CacheRedis:
|
||||||
- Host: "127.0.0.1:21002"
|
- Host: "127.0.0.1:21002"
|
||||||
Pass: "sjdZG6mcS9RTcfW3" # Redis 密码,如果未设置则留空
|
Pass: "3m3WsgyCKWqz" # Redis 密码,如果未设置则留空
|
||||||
Type: "node" # 单节点模式
|
Type: "node" # 单节点模式
|
||||||
JwtAuth:
|
JwtAuth:
|
||||||
AccessSecret: "WUvoIwL-FK0qnlxhvxR9tV6SjfOpeJMpKmY2QvT99lA"
|
AccessSecret: "WUvoIwL-FK0qnlxhvxR9tV6SjfOpeJMpKmY2QvT99lA"
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentCommissionDeductionListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentCommissionDeductionListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentCommissionListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentCommissionListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentLinkListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentLinkListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentMembershipConfigListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentMembershipConfigListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentMembershipRechargeOrderListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentMembershipRechargeOrderListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentPlatformDeductionListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentPlatformDeductionListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentProductionConfigListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentProductionConfigListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentRewardListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentRewardListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetAgentWithdrawalListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetAgentWithdrawalListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateAgentMembershipConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateAgentMembershipConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_agent
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_agent"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_agent"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateAgentProductionConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateAgentProductionConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminBatchUpdateApiStatusHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminBatchUpdateApiStatusReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_api.NewAdminBatchUpdateApiStatusLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminBatchUpdateApiStatus(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminCreateApiHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminCreateApiReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_api.NewAdminCreateApiLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminCreateApi(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminDeleteApiHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminDeleteApiReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_api.NewAdminDeleteApiLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminDeleteApi(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminGetApiDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminGetApiDetailReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_api.NewAdminGetApiDetailLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminGetApiDetail(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminGetApiListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminGetApiListReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_api.NewAdminGetApiListLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminGetApiList(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminUpdateApiHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminUpdateApiReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_api.NewAdminUpdateApiLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminUpdateApi(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,12 +3,13 @@ package admin_auth
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_auth"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_auth"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminLoginHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminLoginHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_feature
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminConfigFeatureExampleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminConfigFeatureExampleReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_feature.NewAdminConfigFeatureExampleLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminConfigFeatureExample(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,12 +3,13 @@ package admin_feature
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_feature"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminCreateFeatureHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminCreateFeatureHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_feature
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_feature"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminDeleteFeatureHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminDeleteFeatureHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_feature
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_feature"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetFeatureDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetFeatureDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_feature
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminGetFeatureExampleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminGetFeatureExampleReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_feature.NewAdminGetFeatureExampleLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminGetFeatureExample(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,12 +3,13 @@ package admin_feature
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_feature"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetFeatureListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetFeatureListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_feature
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_feature"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_feature"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateFeatureHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateFeatureHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_menu
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_menu"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_menu"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateMenuHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func CreateMenuHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_menu
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_menu"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_menu"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func DeleteMenuHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func DeleteMenuHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_menu
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_menu"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_menu"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetMenuAllHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetMenuAllHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_menu
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_menu"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_menu"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetMenuDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetMenuDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_menu
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_menu"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_menu"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetMenuListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetMenuListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_menu
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_menu"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_menu"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func UpdateMenuHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func UpdateMenuHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_notification
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_notification"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_notification"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminCreateNotificationHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminCreateNotificationHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_notification
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_notification"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_notification"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminDeleteNotificationHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminDeleteNotificationHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_notification
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_notification"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_notification"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetNotificationDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetNotificationDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_notification
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_notification"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_notification"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetNotificationListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetNotificationListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_notification
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_notification"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_notification"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateNotificationHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateNotificationHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_order
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_order"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_order"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminCreateOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminCreateOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_order
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_order"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_order"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminDeleteOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminDeleteOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_order
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_order"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_order"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetOrderDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetOrderDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_order
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_order"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_order"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetOrderListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetOrderListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_order
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_order"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_order"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminRefundOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminRefundOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_order
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_order"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_order"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateOrderHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_platform_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_platform_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_platform_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminCreatePlatformUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminCreatePlatformUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_platform_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_platform_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_platform_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminDeletePlatformUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminDeletePlatformUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_platform_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_platform_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_platform_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetPlatformUserDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetPlatformUserDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_platform_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_platform_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_platform_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetPlatformUserListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetPlatformUserListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_platform_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_platform_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_platform_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdatePlatformUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdatePlatformUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminCreateProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminCreateProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminDeleteProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminDeleteProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetProductDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetProductDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetProductFeatureListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetProductFeatureListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetProductListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetProductListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateProductFeaturesHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateProductFeaturesHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_product
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_product"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_product"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreatePromotionLinkHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func CreatePromotionLinkHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,11 +3,11 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
"hm-server/app/main/api/internal/svc"
|
"tydata-server/app/main/api/internal/svc"
|
||||||
"hm-server/app/main/api/internal/types"
|
"tydata-server/app/main/api/internal/types"
|
||||||
"hm-server/common/result"
|
"tydata-server/common/result"
|
||||||
"hm-server/pkg/lzkit/validator"
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetPromotionLinkDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetPromotionLinkDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetPromotionLinkListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetPromotionLinkListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetPromotionStatsHistoryHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetPromotionStatsHistoryHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetPromotionStatsTotalHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetPromotionStatsTotalHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func RecordLinkClickHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func RecordLinkClickHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,11 +3,11 @@ package admin_promotion
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"hm-server/app/main/api/internal/logic/admin_promotion"
|
"tydata-server/app/main/api/internal/logic/admin_promotion"
|
||||||
"hm-server/app/main/api/internal/svc"
|
"tydata-server/app/main/api/internal/svc"
|
||||||
"hm-server/app/main/api/internal/types"
|
"tydata-server/app/main/api/internal/types"
|
||||||
"hm-server/common/result"
|
"tydata-server/common/result"
|
||||||
"hm-server/pkg/lzkit/validator"
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_query
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_query"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_query"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetQueryCleanupConfigListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetQueryCleanupConfigListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_query
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_query"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_query"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetQueryCleanupDetailListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetQueryCleanupDetailListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_query
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_query"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_query"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetQueryCleanupLogListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetQueryCleanupLogListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_query
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_query"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_query"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetQueryDetailByOrderIdHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetQueryDetailByOrderIdHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_query
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_query"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_query"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminUpdateQueryCleanupConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminUpdateQueryCleanupConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_role
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_role"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateRoleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func CreateRoleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_role
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_role"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func DeleteRoleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func DeleteRoleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_role
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_role"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetRoleDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetRoleDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_role
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_role"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetRoleListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func GetRoleListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_role
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_role"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func UpdateRoleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func UpdateRoleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_role_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminAssignRoleApiHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminAssignRoleApiReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_role_api.NewAdminAssignRoleApiLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminAssignRoleApi(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_role_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminGetAllApiListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminGetAllApiListReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_role_api.NewAdminGetAllApiListLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminGetAllApiList(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_role_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminGetRoleApiListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminGetRoleApiListReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_role_api.NewAdminGetRoleApiListLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminGetRoleApiList(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_role_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminRemoveRoleApiHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminRemoveRoleApiReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_role_api.NewAdminRemoveRoleApiLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminRemoveRoleApi(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package admin_role_api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_role_api"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AdminUpdateRoleApiHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
var req types.AdminUpdateRoleApiReq
|
||||||
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
|
result.ParamErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err := validator.Validate(req); err != nil {
|
||||||
|
result.ParamValidateErrorResult(r, w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
l := admin_role_api.NewAdminUpdateRoleApiLogic(r.Context(), svcCtx)
|
||||||
|
resp, err := l.AdminUpdateRoleApi(&req)
|
||||||
|
result.HttpResult(r, w, resp, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,12 +3,13 @@ package admin_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminCreateUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminCreateUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminDeleteUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminDeleteUserHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetUserDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetUserDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ package admin_user
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"tydata-server/app/main/api/internal/logic/admin_user"
|
||||||
|
"tydata-server/app/main/api/internal/svc"
|
||||||
|
"tydata-server/app/main/api/internal/types"
|
||||||
|
"tydata-server/common/result"
|
||||||
|
"tydata-server/pkg/lzkit/validator"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/rest/httpx"
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||||||
"hm-server/app/main/api/internal/logic/admin_user"
|
|
||||||
"hm-server/app/main/api/internal/svc"
|
|
||||||
"hm-server/app/main/api/internal/types"
|
|
||||||
"hm-server/common/result"
|
|
||||||
"hm-server/pkg/lzkit/validator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func AdminGetUserListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func AdminGetUserListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user