namespace FoodLabeling.Application.Contracts.Dtos.Location;
///
/// 门店批量编辑结果
///
public class LocationBulkUpdateResultDto
{
public int SuccessCount { get; set; }
public int FailCount { get; set; }
public List Errors { get; set; } = new();
}
///
/// 批量编辑中单条失败信息
///
public class LocationBulkUpdateErrorDto
{
///
/// 在请求 items 数组中的序号(从 1 开始,与前端网格行对应)
///
public int RowNumber { get; set; }
public Guid Id { get; set; }
public string Message { get; set; } = string.Empty;
}