| | |
| | | { |
| | | public partial class Sys_DictionaryController |
| | | { |
| | | [HttpPost, Route("GetVueDictionary"), AllowAnonymous] |
| | | [HttpPost, Route("GetVueDictionary")] |
| | | [ApiActionPermission()] |
| | | public IActionResult GetVueDictionary([FromBody] string[] dicNos) |
| | | public async Task<IActionResult> GetVueDictionary([FromBody] string[] dicNos) |
| | | { |
| | | return Content(Service.GetVueDictionary(dicNos).Serialize()); |
| | | return Content((await Service.GetVueDictionary(dicNos)).Serialize()); |
| | | } |
| | | |
| | | //[HttpPost, Route("GetVueDictionary"), AllowAnonymous] |
| | | //[ApiActionPermission()] |
| | | //public IActionResult GetVueDictionary([FromBody] string[] dicNos) |
| | | //{ |
| | | // return Content(Service.GetVueDictionary(dicNos).Serialize()); |
| | | //} |
| | | |
| | | /// <summary> |
| | | /// tableå è½½æ°æ®åå·æ°å½åtableæ°æ®çåå
¸é¡¹(éç¨åå
¸æ°æ®éæ¯è¾å¤§çæ
åµ) |
| | | /// </summary> |