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.
25 lines
537 B
C#
25 lines
537 B
C#
using SqlSugar;
|
|
using System.ComponentModel;
|
|
namespace Myshipping.Core.Entity;
|
|
|
|
/// <summary>
|
|
/// 操作日志关联业务表
|
|
/// </summary>
|
|
[SugarTable("sys_log_op_buss")]
|
|
[Description("操作日志关联业务表")]
|
|
[Tenant("logs")]
|
|
public class SysLogOpBuss
|
|
{
|
|
/// <summary>
|
|
/// 日志主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long LogId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long BusinessId { get; set; }
|
|
}
|