wanshenmean
2024-09-12 aa286778955aec6cbb806d9fd79aded250f09d19
1
2
3
4
5
6
7
8
9
10
11
12
using WIDESEA_IStorageBasicService;
 
namespace WIDESEA_WMSServer.Controllers;
 
[Route("api/StockInfo")]
[ApiController]
public class StockInfoController : ApiBaseController<IStockInfoService, DtStockInfo>
{
    public StockInfoController(IStockInfoService service) : base(service)
    {
    }
}