2 Star 4 Fork 5

联犀/中台模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
taskInfoCreateLogic.go 978 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-22 10:54 . feat: 细节调整
package timedmanagelogic
import (
"context"
"gitee.com/unitedrhino/core/service/timed/internal/repo/relationDB"
"gitee.com/unitedrhino/share/errors"
"gitee.com/unitedrhino/core/service/timed/timedjobsvr/internal/svc"
"gitee.com/unitedrhino/core/service/timed/timedjobsvr/pb/timedjob"
"github.com/zeromicro/go-zero/core/logx"
)
type TaskInfoCreateLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewTaskInfoCreateLogic(ctx context.Context, svcCtx *svc.ServiceContext) *TaskInfoCreateLogic {
return &TaskInfoCreateLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *TaskInfoCreateLogic) TaskInfoCreate(in *timedjob.TaskInfo) (*timedjob.Response, error) {
po := ToTaskInfoPo(in)
err := relationDB.NewTaskInfoRepo(l.ctx).Insert(l.ctx, po)
if err != nil {
if errors.Cmp(err, errors.Duplicate) {
return &timedjob.Response{}, nil
}
return nil, err
}
return &timedjob.Response{}, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
中台模块
v1.0.1

搜索帮助