using DS.WMS.Core.Application.Entity; using DS.WMS.Core.Fee.Dtos; namespace DS.WMS.Core.Application.Dtos { /// /// 按业务提交申请单 /// public class ApplicationRequest where TEntity : ApplicationBase { /// /// 申请单 /// public TEntity Application { get; set; } /// /// 业务信息 /// public List Items { get; set; } } }