using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using SkiaSharp;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_DTO.Basic;
|
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("newBarcodeLib"), AllowAnonymous]
|
public string newBarcodeLib([FromBody] palletCodeInfoDTO palletCodeInfo)
|
{
|
return Service.newBarcodeLib(palletCodeInfo);
|
}
|
}
|
}
|