You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
590 B
23 lines
590 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
using Warehouse.DAL.EveryStationLotInfo;
|
|
|
|
namespace Warehouse.WebApi
|
|
{
|
|
public class EveryStationLotInfoController : ApiController
|
|
{
|
|
EveryStationLotInfo YBSAE = new EveryStationLotInfo();
|
|
[Route("api/EveryStationLotInfo/Station_capacity")]
|
|
[HttpPost]
|
|
public IHttpActionResult Station_capacity(dynamic para)
|
|
{
|
|
|
|
var res = YBSAE.Station_capacity(para);
|
|
return Json(res);
|
|
}
|
|
}
|
|
}
|