using SqlSugar; using System.ComponentModel; namespace Myshipping.Core.Entity; /// /// 操作日志关联业务表 /// [SugarTable("sys_log_op_buss")] [Description("操作日志关联业务表")] [Tenant("logs")] public class SysLogOpBuss { /// /// 日志主键 /// [SugarColumn(IsPrimaryKey = true)] public long LogId { get; set; } /// /// 业务主键 /// [SugarColumn(IsPrimaryKey = true)] public long BusinessId { get; set; } }