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
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// ip
///
[SugarColumn(IsNullable = true, ColumnDescription = "ip")]
public string Url { get; set; }
///
/// 端口
///
[SugarColumn(IsNullable = true, ColumnDescription = "端口")]
public string Port { get; set; }
///
/// 路由
///
[SugarColumn(IsNullable = true, ColumnDescription = "路由")]
public string Route { get; set; }
///
/// 日志类型
///
//[SugarColumn(IsNullable = true, ColumnDescription = "日志类型")]
//public DateTime LogType { get; set; }
///
/// 方法名
///
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "方法名")]
public string Method { get; set; }
///
/// 请求方式
///
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "请求方式")]
public string Request { get; set; }
///
/// 令牌
///
[SugarColumn(IsNullable = true, ColumnDescription = "令牌")]
public string Authorized { get; set; }
///
/// 备注
///
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "备注")]
public string Remark { get; set; }
}
}