修改实体

This commit is contained in:
chenchun
2022-04-24 16:00:35 +08:00
parent b082ec19aa
commit 31d2c3c98e
4 changed files with 0 additions and 120 deletions

View File

@@ -1,23 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Yi.Framework.Model.Models
{
/// <summary>
/// 日志表
///</summary>
public partial class LogEntity:BaseModelEntity
{
/// <summary>
/// 租户Id
///</summary>
[SugarColumn(ColumnName="TenantId" )]
public long? TenantId { get; set; }
/// <summary>
/// 日志信息
///</summary>
[SugarColumn(ColumnName="Message" )]
public string Message { get; set; }
}
}