1
dengjunjie
2025-10-24 90c96889bd3348740eb8952901f6f3d7e6c8d340
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IWMsInfoServices;
using WIDESEA_Model.Models;
using WIDESEA_WMsInfoServices;
 
namespace WIDESEA_WMSServer.Controllers.WMSInfo
{
    [Route("api/[controller]")]
    [ApiController]
    public class InventoryInfoController : ApiBaseController<IInventoryInfoService, Dt_InventoryInfo>
    {
        public InventoryInfoController(IInventoryInfoService service) : base(service)
        {
        }
 
      
    }
}