using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers.Basic
{
///
/// 发货车位信息
///
[Route("api/SendStationCode")]
[ApiController]
public class SendStationCodeController : ApiBaseController
{
public SendStationCodeController(ISendStationCodeService service) : base(service)
{
}
}
}