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