¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_BusinessServices; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_IBusinessServices; |
| | | using WIDESEA_IStorageBasicServices; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers |
| | | { |
| | | [Route("api/Dt_BillGroupStock")] |
| | | [ApiController] |
| | | public class Dt_BillGroupStockController : ApiBaseController<IDt_BillGroupStockService, Dt_BillGroupStock> |
| | | { |
| | | private readonly IHttpContextAccessor _httpContextAccessor; |
| | | |
| | | public Dt_BillGroupStockController(IDt_BillGroupStockService service, IHttpContextAccessor httpContextAccessor) : base(service) |
| | | { |
| | | _httpContextAccessor = httpContextAccessor; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// PDAç»ç |
| | | /// </summary> |
| | | /// <param name="dt_BillGroupStock">ç»çä¿¡æ¯</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("PDAGroupPlateConfirm"),AllowAnonymous] |
| | | public WebResponseContent PDAGroupPlateConfirm([FromBody]Dt_BillGroupStock dt_BillGroupStock) |
| | | { |
| | | return Service.PDAGroupPlateConfirm(dt_BillGroupStock); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// PDAç»çæ¤é |
| | | /// </summary> |
| | | /// <param name="plateCode">æçå·</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("PDAGroupPlateRevoke"),AllowAnonymous] |
| | | public WebResponseContent PDAGroupPlateRevoke(string plateCode) |
| | | { |
| | | return Service.PDAGroupPlateRevoke(plateCode); |
| | | } |
| | | } |
| | | } |