作者 tangxvhui

暂存

... ... @@ -42,7 +42,7 @@ type (
// 获取标签详情
type (
TagGetRequest {
Id int64 `json:"id"`
Id int64 `path:"id"`
}
TagGetResponse {
Id int64 `json:"id"`
... ... @@ -76,7 +76,7 @@ type (
//删除标签
type (
TagDeleteRequest {
Id int64 `json:"id"`
Id int64 `path:"id"`
}
TagDeleteResponse {
Id int64 `json:"id"`
... ...
... ... @@ -26,7 +26,6 @@ func NewCreateTagLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CreateT
}
func (l *CreateTagLogic) CreateTag(req *types.TagCreateRequest) (resp *types.TagCreateResponse, err error) {
// todo: add your logic here and delete this line
var conn = l.svcCtx.DefaultDBConn()
//检查重复
cnt, _, err := l.svcCtx.ArticleTagRepository.Find(l.ctx, conn, req.CompanyId, map[string]interface{}{
... ...
... ... @@ -90,7 +90,7 @@ type TagEditResponse struct {
}
type TagGetRequest struct {
Id int64 `json:"id"`
Id int64 `path:"id"`
}
type TagGetResponse struct {
... ... @@ -121,7 +121,7 @@ type TagItem struct {
}
type TagDeleteRequest struct {
Id int64 `json:"id"`
Id int64 `path:"id"`
}
type TagDeleteResponse struct {
... ...