using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IRecordService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Record
|
{
|
[Route("api/LocationStatusChangeRecord")]
|
[ApiController]
|
public class LocationStatusChangeRecordController : ApiBaseController<ILocationStatusChangeRecordSetvice, Dt_LocationStatusChangeRecord>
|
{
|
public LocationStatusChangeRecordController(ILocationStatusChangeRecordSetvice service) : base(service)
|
{
|
}
|
|
[HttpPost, Route("Get_LocationStatusChangeRecord")]
|
public List<Dt_LocationStatusChangeRecord> Get_LocationStatusChangeRecord(int id)
|
{
|
return Service.Get_LocationStatusChangeRecord(id);
|
}
|
}
|
}
|