wankeda
2026-01-27 d13e6e7d5df05ba244971d2fabb788ccb0f5c12a
WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/PalletTypeInfoController.cs
@@ -1,5 +1,6 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models;
@@ -13,5 +14,12 @@
        public PalletTypeInfoController(IPalletTypeInfoService service) : base(service)
        {
        }
        [HttpGet,HttpPost, Route("PrintPalletCode"), AllowAnonymous]
        public WebResponseContent PrintPalletCode(int num, string palletCodeType)
        {
            return Service.PrintPalletCode(num, palletCodeType);
        }
    }
}