| 1234567891011121314151617181920212223242526272829 |
- using Mapster;
- namespace Model
- {
- /// <summary>
- /// APP项目对应模块 app_project_module
- /// </summary>
- [SugarTable("app_project_module", "APP项目对应模块")]
- [Tenant("0")]
- public class AppProjectModule
- {
- /// <summary>
- /// APP项目ID
- /// </summary>
- [SugarColumn(ColumnDescription = "APP项目ID", IsPrimaryKey = true, ColumnName = "app_id")]
- public int appId { get; set; }
- /// <summary>
- /// 功能模块ID
- /// </summary>
- [SugarColumn(ColumnDescription = "功能模块ID", IsPrimaryKey = true, ColumnName = "module_id")]
- public int moduleId { get; set; }
- }
- }
|