yanjinhui
6 天以前 5b8bf171b9afda52fa366a72e54eedbd9e6d4d17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IWMsInfoServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.WMSInfo
{
    [Route("api/[controller]")]
    [ApiController]
    public class Inventory_BatchController : ApiBaseController<IInventory_BatchServices, Dt_Inventory_Batch>
    {
        public Inventory_BatchController(IInventory_BatchServices service) : base(service)
        {
        }
    }
}