sunpengfei
2 天以前 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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.CommonServerCodeUrls])]
    public class SaveCodeUrlCommand : IRequest<string>
    {
        /// <summary>
        /// 场景
        /// </summary>
        public EnumCodeUrlScene Scene { get; set; }
 
        /// <summary>
        /// 地址
        /// </summary>
        public string Url { get; set; }
 
        /// <summary>
        /// 参数1
        /// </summary>
        public string ParamValue1 { get; set; }
 
        /// <summary>
        /// 参数2
        /// </summary>
        public string ParamValue2 { get; set; }
 
        /// <summary>
        /// 参数3
        /// </summary>
        public string ParamValue3 { get; set; }
 
        /// <summary>
        /// 参数4
        /// </summary>
        public string ParamValue4 { get; set; }
 
        /// <summary>
        /// 参数5
        /// </summary>
        public string ParamValue5 { get; set; }
 
        /// <summary>
        /// 过期时间
        /// </summary>
        public DateTime? ExpiredTime { get; set; }
    }
}