Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/RoleMenuDbEntity.cs 427 Bytes
dbc9750f   李曜臣   成员模块实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  /// <summary>
  /// rolemenu 表映射(兼容字符串类型 RoleId/MenuId
  /// </summary>
  [SugarTable("rolemenu")]
  public class RoleMenuDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
      public string RoleId { get; set; } = string.Empty;
  
      public string MenuId { get; set; } = string.Empty;
  }