对比新文件 |
| | |
| | | 锘縰sing Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_IBasicService; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers.Basic |
| | | { |
| | | [Route("api/[controller]")] |
| | | [ApiController] |
| | | public class PalletCodeInfoController : ApiBaseController<IPalletCodeInfoService, Dt_PalletCodeInfo> |
| | | { |
| | | public PalletCodeInfoController(IPalletCodeInfoService service) : base(service) |
| | | { |
| | | } |
| | | [HttpPost,Route("PrintStatusUp")] |
| | | public WebResponseContent PrintStatusUp(string printCode) |
| | | { |
| | | return Service.PrintStatusUp(printCode); |
| | | } |
| | | } |
| | | } |