| | |
| | | 锘縰sing Microsoft.AspNetCore.Http; |
| | | 锘縰sing System.DirectoryServices.Protocols; |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_IBasicService; |
| | | using WIDESEA_Model.Models; |
| | |
| | | public MaterielInfoController(IMaterielInfoService service) : base(service) |
| | | { |
| | | } |
| | | |
| | | [HttpPost,Route("GetMaterialTypes")] |
| | | public WebResponseContent GetMaterialTypes([FromBody] SearchRequest request) |
| | | { |
| | | return Service.GetMaterialTypes(request); |
| | | } |
| | | } |
| | | } |