using Business.ResourceExamineManagement; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp; using Volo.Abp.AspNetCore.Mvc; namespace Business.Controllers { /// /// 生产排产 /// [RemoteService] [Area("Business")] [Route("api/business/production_schedule")] public class ProductionScheduleController : AbpController { private readonly IProductionScheduleAppService _ProductionScheduleAppService; /// /// 构造函数 /// /// public ProductionScheduleController(IProductionScheduleAppService ProductionScheduleAppService) { _ProductionScheduleAppService = ProductionScheduleAppService; } /// /// 生产排产 /// /// /// [HttpPost] [Route("productionschedule")] public Task ProductionSchedule(String workOrds) { return _ProductionScheduleAppService.ProductionSchedule(new List()); } } }