Files
Yi.Admin/Yi.Framework/Yi.Framework.Model/Models/role.cs
橙子 f35ca69550 Revert "上传框架"
This reverts commit bcf39d525b.
2021-10-12 13:45:24 +08:00

19 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Model.Models
{
public class role:baseModel<int>
{
public string role_name { get; set; }
public string introduce { get; set; }
public ICollection<menu> menus { get; set; }
public ICollection<user> users { get; set; }
}
}