重构user控制器

This commit is contained in:
lzw
2021-10-27 23:03:56 +08:00
parent 7c255f383a
commit 9d83b24a8d
9 changed files with 102 additions and 202 deletions

View File

@@ -14,7 +14,7 @@ namespace Yi.Framework.Model.Models
public IList<menu> children { get; set; }
public List<menu> children { get; set; }
public mould mould { get; set; }
}
}

View File

@@ -12,6 +12,6 @@ namespace Yi.Framework.Model.Models
public string introduce { get; set; }
public IList<menu> menus { get; set; }
public List<menu> menus { get; set; }
}
}

View File

@@ -21,7 +21,7 @@ namespace Yi.Framework.Model.Models
public int? phone { get; set; }
public IList<role> roles { get; set; }
public List<role> roles { get; set; }
}
}