update_xunji_service_logic.go 1.1 KB

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