sunpengfei
2 天以前 ced7ed5d9b3e0cd0c1bdbc9d76d1906301d189c2
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
30
31
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 发送邀请签约短信
    /// </summary>
    [Resource([EnumResourceController.UserServerEnterpriseEmployee])]
    public class SendInviteElectronSignSmsCommand : IRequest<int>
    {
        public SendInviteElectronSignSmsCommand()
        {
            Ids = [];
        }
 
        /// <summary>
        /// Id
        /// </summary>
        public List<Guid> Ids { get; set; }
 
        /// <summary>
        /// 合同模板Id
        /// </summary>
        public Guid ContractTemplateId { get; set; }
    }
}