You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Nodes;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
[SugarTable("lasa_log")]
|
|
public class LasaLog
|
|
{
|
|
/// <summary>
|
|
/// Desc:标识
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// Desc:专题
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Topic { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:方法
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Method { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:数据
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(IsJson = true)]
|
|
public string Data { get; set; }
|
|
}
|
|
}
|