zhanghonglin
6 天以前 8f9b9411ca279670bd85fcfa7763987295ed9abf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_DTO.Basic;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models.Basic;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_ITaskInfoService;
using WIDESEAWCS_Model.Models.TaskInfo;
 
namespace WIDESEA_WMSServer.Controllers.Basic
{
    [Route("api/FillingOrder")]
    [ApiController]
    public class Dt_FillingOrderController : ApiBaseController<IDt_FillingOrderService, Dt_FillingOrder>
    {
        public Dt_FillingOrderController(IDt_FillingOrderService service) : base(service)
        {
        }
 
        //添加二维码信息
        [HttpPost, HttpGet, Route("InsertFilling"), AllowAnonymous]
        public WebResponseContent InsertFilling([FromBody] FillingOrder fillingOrder)
        {
            return Service.InsertFilling(fillingOrder);
        }
    }
}