1
yangpeixing
2026-01-22 d669b42041dc62006413ba2578b385cd54cb5181
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);
        }
    }
}