using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_BasicInfoService;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_Server.Controllers.BasicInfo
|
{
|
/// <summary>
|
/// 工位信息
|
/// </summary>
|
[Route("api/scanStation")]
|
[ApiController]
|
public class ScanStationController : ApiBaseController<IScanStationService, Dt_ScanStation>
|
{
|
public ScanStationController(IScanStationService service) : base(service)
|
{
|
|
}
|
|
}
|
}
|