sunpengfei
3 天以前 ad63bd48b1619e7c3779eefdf1d6a32a222169da
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.UserServerEnterprise])]
    public class SetEnterpriseSmsSettingCommand : IRequest<Guid>
    {
        /// <summary>
        /// Id
        /// </summary>
        public Guid Id { get; set; }
 
        /// <summary>
        /// 短信通道
        /// </summary>
        public EnumSmsAccess? SmsAccess { get; set; }
 
        /// <summary>
        /// 短信费用
        /// </summary>
        public decimal SmsCost { get; set; }
    }
}