chengsc
2024-11-01 6aa034c0c53cc7d49302dea596864fc61c705dda
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.Entity.SysEntity
{
    /// <summary>
    /// 外部系统token令牌效期表
    /// </summary>
    [SugarTable("SysToken")]
    public class SysToken : BaseEntity
    {
 
        /// <summary>
        /// 外部系统名称
        /// Nullable:False
        /// </summary>
        public string SystemName { get; set; }
 
        /// <summary>
        /// token值
        /// Nullable:True
        /// </summary>
        public string Token { get; set; }
 
        /// <summary>
        /// 有效期
        /// Nullable:true
        /// </summary>
        public DateTime? ExpireTime { get; set; }
 
    }
}