刘磊
2025-06-09 dabbcafc629ef87d11ba55ef8cc1cdc776c047d8
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
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SqlSugar;
using WIDESEA_Core.DB.Models;
using WIDESEA_Core.Tenants;
 
namespace WIDESEA_Model.Models
{
    [MultiTenant]
    public class Sys_ExteriorInterface
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// ip
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "ip")]
        public string Url { get; set; }
 
        /// <summary>
        /// 端口
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "端口")]
        public string Port { get; set; }
 
        /// <summary>
        /// 路由
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "路由")]
        public string Route { get; set; }
 
        /// <summary>
        /// 日志类型
        /// </summary>
        //[SugarColumn(IsNullable = true, ColumnDescription = "日志类型")]
        //public DateTime LogType { get; set; }
 
        /// <summary>
        /// 方法名
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "方法名")]
        public string Method { get; set; }
 
        /// <summary>
        /// 请求方式
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "请求方式")]
        public string Request { get; set; }
 
        /// <summary>
        /// 令牌
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "令牌")]
        public string Authorized { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "备注")]
        public string Remark { get; set; }       
    }
}