sunpengfei
3 天以前 b288e7effa0edc09baad6089433a38b2b29b29db
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
using Furion.DatabaseAccessor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 编号地址
    /// </summary>
    public class CodeUrl : CommonEntity<MasterDbContextLocator>
    {
        /// <summary>
        /// 场景
        /// </summary>
        public EnumCodeUrlScene Scene { get; set; }
 
        /// <summary>
        /// 编号
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 地址
        /// </summary>
        public string Url { get; set; }
 
        /// <summary>
        /// 过期时间
        /// </summary>
        public DateTime? ExpiredTime { get; set; }
    }
}