AppProjectModule.cs 685 B

1234567891011121314151617181920212223242526272829
  1. using Mapster;
  2. namespace Model
  3. {
  4. /// <summary>
  5. /// APP项目对应模块 app_project_module
  6. /// </summary>
  7. [SugarTable("app_project_module", "APP项目对应模块")]
  8. [Tenant("0")]
  9. public class AppProjectModule
  10. {
  11. /// <summary>
  12. /// APP项目ID
  13. /// </summary>
  14. [SugarColumn(ColumnDescription = "APP项目ID", IsPrimaryKey = true, ColumnName = "app_id")]
  15. public int appId { get; set; }
  16. /// <summary>
  17. /// 功能模块ID
  18. /// </summary>
  19. [SugarColumn(ColumnDescription = "功能模块ID", IsPrimaryKey = true, ColumnName = "module_id")]
  20. public int moduleId { get; set; }
  21. }
  22. }