Ejemplo n.º 1
0
        public object Query([FromQuery] CommonQueryParam queryParam)
        {
            var r = SysACLCategoryService.Query(queryParam);

            return(r);
        }
Ejemplo n.º 2
0
 public ResponseResult Delete(int id)
 {
     return(SysACLCategoryService.Delete(id));
 }
Ejemplo n.º 3
0
 public ResponseResult Update(int id, [FromBody] SysACLCategory sysACLCategory)
 {
     sysACLCategory.Id = id;
     return(SysACLCategoryService.Update(sysACLCategory));
 }
Ejemplo n.º 4
0
 public ResponseResult Add(SysACLCategory sysACLCategory)
 {
     return(SysACLCategoryService.Add(sysACLCategory));
 }