using FoodLabeling.Application.Contracts.Dtos.Common; namespace FoodLabeling.Application.Contracts.Dtos.Training; public class TrainingFileUpdateInputVo : ITrainingFileScopeInput { public string FileName { get; set; } = string.Empty; public int OrderNum { get; set; } /// 适用 Company:ALL / SPECIFIED public string? AppliedPartnerType { get; set; } /// 适用 Company(fl_partner.Id);可含 ALL public List? PartnerIds { get; set; } /// 相同;可含 ALL public List? CompanyIds { get; set; } /// 适用 Region:ALL / SPECIFIED public string? AppliedRegionType { get; set; } /// 适用 Region(fl_group.Id);与 合并;可含 ALL public List? RegionIds { get; set; } /// 相同;可含 ALL public List? GroupIds { get; set; } /// 适用 Location:ALL / SPECIFIED public string? AvailabilityType { get; set; } /// 适用 Location:ALL / SPECIFIED( 别名) public string? AppliedLocationType { get; set; } /// 适用门店(location.Id);可含 ALL public List? LocationIds { get; set; } }