sunpengfei
2025-08-19 a59e5d99a77fcb152e6fe49df78f69cb5fd6c5a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using FlexJobApi.Core;
using FlexJobApi.Core.Models.HumanResourcesServer.ElectronSign;
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.UserServer.Application
{
    public class PersonalUserRealCommandHandler(
            ResourceHttpUtils resourceHttpUtils
        ) :
        IRequestHandler<SendPersonalUserIdentity3RealSmsCommand, Guid>
    {
        private readonly ResourceHttpUtils resourceHttpUtils = resourceHttpUtils;
 
        public async Task<Guid> Handle(SendPersonalUserIdentity3RealSmsCommand request, CancellationToken cancellationToken)
        {
            await resourceHttpUtils.SendHttpAsync(EnumResourceService.HumanResourcesServer, HttpMethod.Post, "/api/ElectronSign/SendRealSms", new SendRealSmsInput
            {
 
 
            }.ToJson());
            throw new Exception();
        }
    }
}