using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Business.ResourceExamineManagement.Dto; namespace Business.ResourceExamineManagement { /// /// 生产排产 /// public interface IProductionScheduleAppService : IApplicationService { /// /// 生产排产 /// /// /// Task ProductionSchedule(List workOrds); } }