using WIDESEA_IStorageBasicServices.Stock; using WIDESEA_Model.Models.ERP; namespace WIDESEA_WMSServer.Controllers.ERP { [Route("api/SupplierERP")] [Authorize, ApiController] public class ERPSupplierController : Controller { private readonly IERPSupplierService service; public ERPSupplierController(IERPSupplierService _service) { service = _service; } [HttpPost, Route("GetPageData"),AllowAnonymous] public PageGridData<用友供应商档案_ST> GetPageData([FromBody] PageDataOptions options) { return service.GetPageData(options); } } }