ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_WMSServer/Controllers/Basic/SupplierInfoController.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,20 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; using WIDESEA_IBasicService; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers.Basic { /// <summary> /// ä¾åºå /// </summary> [Route("api/[controller]")] [ApiController] public class SupplierInfoController : ApiBaseController<ISupplierInfoService, Dt_SupplierInfo> { public SupplierInfoController(ISupplierInfoService service) : base(service) { } } }