| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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
- {
- /// <summary>
- /// 生产排产
- /// </summary>
- [RemoteService]
- [Area("Business")]
- [Route("api/business/production_schedule")]
- public class ProductionScheduleController : AbpController
- {
- private readonly IProductionScheduleAppService _ProductionScheduleAppService;
- /// <summary>
- /// 构造函数
- /// </summary>
- /// <param name="ProductionScheduleAppService"></param>
- public ProductionScheduleController(IProductionScheduleAppService ProductionScheduleAppService)
- {
- _ProductionScheduleAppService = ProductionScheduleAppService;
- }
- /// <summary>
- /// 生产排产
- /// </summary>
- /// <param name="workOrds"></param>
- /// <returns></returns>
- [HttpPost]
- [Route("productionschedule")]
- public Task<string> ProductionSchedule(String workOrds)
- {
- return _ProductionScheduleAppService.ProductionSchedule(new List<string>());
- }
- }
- }
|