コード例 #1
0
 public async Task <ApiResult <string> > DeleteCode([FromBody] ParmString obj)
 {
     return(await _sysCodeTypeService.DeleteAsync(obj.parm));
 }
コード例 #2
0
 public async Task <ApiResult <string> > DeleteCode(string guid)
 {
     return(await _sysCodeTypeService.DeleteAsync(guid));
 }
コード例 #3
0
 public async Task <ApiResult <string> > DeleteCode(DeletePost parm)
 {
     return(await _sysCodeTypeService.DeleteAsync(parm));
 }
コード例 #4
0
 public async Task <ApiResult <string> > Delete([FromBody] DelParams obj)
 {
     return(await _sysCodeTypeService.DeleteAsync(obj.ids));
 }
コード例 #5
0
ファイル: CodeTypeController.cs プロジェクト: uvaa/ytjkb
 public async Task <IActionResult> DeleteCode([FromBody] ParmString obj)
 {
     return(Ok(await _sysCodeTypeService.DeleteAsync(obj.parm)));
 }