using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBasicService;
|
using WIDESEA_IStockService;
|
using WIDESEA_Model.Models.Outbound;
|
using WIDESEA_Model.Models.Stock;
|
|
namespace WIDESEA_WMSServer.Controllers.Stock
|
{
|
[Route("api/stockInfo_hty")]
|
[ApiController]
|
public class StockInfo_HtyController : ApiBaseController<IStockInfo_HtyService, Dt_StockInfo_hty>
|
{
|
public StockInfo_HtyController(IStockInfo_HtyService service) : base(service)
|
{
|
}
|
}
|
}
|