using Hotline.Share.Dtos.File; namespace Hotline.Share.Dtos.Order.Handle; public class OrderBatchFileDto { public List OrderIds { get; set; } /// /// 办理意见 /// public string Opinion { get; set; } = string.Empty; /// /// 附件 /// public List Files { get; set; } = new(); }