using WIDESEA_IStorageBasicServices.Stock; using WIDESEA_Model.Models.ERP; namespace WIDESEA_WMSServer.Controllers.ERP { [Route("api/MaterialERP")] [Authorize, ApiController] public class ERPMaterialController : Controller { private readonly IERPMaterialService service; public ERPMaterialController(IERPMaterialService _service) { service = _service; } [HttpPost, Route("GetPageData"),AllowAnonymous] public PageGridData<用友编码_ST> GetPageData([FromBody] PageDataOptions options) { return service.GetPageData(options); } } }