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.
49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.UserModule;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Fee.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 报表生成上下文
|
|
/// </summary>
|
|
public class ReportContext
|
|
{
|
|
/// <summary>
|
|
/// 服务提供程序
|
|
/// </summary>
|
|
public IServiceProvider ServiceProvider { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// 获取主库访问对象
|
|
/// </summary>
|
|
public ISqlSugarClient Db { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// 获取租户库访问对象
|
|
/// </summary>
|
|
public ISqlSugarClient TenantDb { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// 请求用户
|
|
/// </summary>
|
|
public IUser User { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// 操作结果,用于记录错误信息
|
|
/// </summary>
|
|
public DataResult? ErrorResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
public BusinessType BusinessType { get; set; } = BusinessType.OceanShippingExport;
|
|
|
|
/// <summary>
|
|
/// 业务ID
|
|
/// </summary>
|
|
public long[] Ids { get; set; } = [];
|
|
}
|
|
}
|