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; }        
 | 
    } 
 | 
} 
 |