update_xunji_service_logic.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package xunji_service
  2. import (
  3. "context"
  4. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  5. "wechat-api/internal/utils/dberrorhandler"
  6. "wechat-api/internal/svc"
  7. "wechat-api/internal/types"
  8. "github.com/zeromicro/go-zero/core/logx"
  9. )
  10. type UpdateXunjiServiceLogic struct {
  11. logx.Logger
  12. ctx context.Context
  13. svcCtx *svc.ServiceContext
  14. }
  15. func NewUpdateXunjiServiceLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateXunjiServiceLogic {
  16. return &UpdateXunjiServiceLogic{
  17. Logger: logx.WithContext(ctx),
  18. ctx: ctx,
  19. svcCtx: svcCtx}
  20. }
  21. func (l *UpdateXunjiServiceLogic) UpdateXunjiService(req *types.XunjiServiceInfo) (*types.BaseMsgResp, error) {
  22. err := l.svcCtx.DB.XunjiService.UpdateOneID(*req.Id).
  23. SetNotNilStatus(req.Status).
  24. SetNotNilXunjiID(req.XunjiId).
  25. SetNotNilAgentID(req.AgentId).
  26. SetNotNilWxid(req.Wxid).
  27. SetNotNilAPIBase(req.ApiBase).
  28. SetNotNilAPIKey(req.ApiKey).
  29. Exec(l.ctx)
  30. if err != nil {
  31. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  32. }
  33. return &types.BaseMsgResp{Msg: errormsg.UpdateSuccess}, nil
  34. }