wanshenmean
2024-11-06 fb77cc8fe39bd3c3f49b336bf9e664957fe2dc07
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)
    {
    }
}