public ResponseResult Update(int id, [FromBody] SysACLCategory sysACLCategory) { sysACLCategory.Id = id; return(SysACLCategoryService.Update(sysACLCategory)); }
public ResponseResult Add(SysACLCategory sysACLCategory) { return(SysACLCategoryService.Add(sysACLCategory)); }