namespace FoodLabeling.Application.Contracts.Dtos.Common;
///
/// 培训文件创建/编辑入参中的 Company / Region / Location 适用范围字段。
///
public interface ITrainingFileScopeInput : ILabelEntityPartnerScopeInput
{
/// 适用 Region:ALL / SPECIFIED
string? AppliedRegionType { get; }
/// 适用 Region(fl_group.Id);与 合并;可含 ALL
List? RegionIds { get; }
/// 与 相同;可含 ALL
List? GroupIds { get; }
/// 适用 Location:ALL / SPECIFIED(与 二选一)
string? AvailabilityType { get; }
/// 适用 Location:ALL / SPECIFIED( 别名)
string? AppliedLocationType { get; }
/// 适用门店(location.Id);可含 ALL
List? LocationIds { get; }
}