转移.net core 3.1,为.NET 5做准备

This commit is contained in:
ÂëÉñ
2020-10-22 14:59:36 +08:00
parent fd9bca23a7
commit a35d596237
1080 changed files with 175912 additions and 185681 deletions

View File

@@ -0,0 +1,86 @@
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 系统日志
/// </summary>
[Table("SysLog")]
public partial class SysLog : Entity
{
public SysLog()
{
this.Content= string.Empty;
this.TypeName= string.Empty;
this.TypeId= string.Empty;
this.Href= string.Empty;
this.CreateTime= DateTime.Now;
this.CreateId= string.Empty;
this.CreateName= string.Empty;
this.Ip= string.Empty;
this.Application = string.Empty;
this.Result= 0;
}
/// <summary>
/// 日志内容
/// </summary>
[Description("日志内容")]
public string Content { get; set; }
/// <summary>
/// 分类名称
/// </summary>
[Description("分类名称")]
public string TypeName { get; set; }
/// <summary>
/// 分类ID
/// </summary>
[Description("分类ID")]
public string TypeId { get; set; }
/// <summary>
/// 操作所属模块地址
/// </summary>
[Description("操作所属模块地址")]
public string Href { get; set; }
/// <summary>
/// 记录时间
/// </summary>
[Description("记录时间")]
public System.DateTime CreateTime { get; set; }
/// <summary>
/// 操作人ID
/// </summary>
[Description("操作人ID")]
public string CreateId { get; set; }
/// <summary>
/// 操作人
/// </summary>
[Description("操作人")]
public string CreateName { get; set; }
/// <summary>
/// 操作机器的IP地址
/// </summary>
[Description("操作机器的IP地址")]
public string Ip { get; set; }
/// <summary>
/// 操作的结果0成功1失败
/// </summary>
[Description("操作的结果0成功1失败")]
public int Result { get; set; }
public string Application { get; set; }
}
}