using SqlSugar;
namespace OpenAuth.Repository.Domain.GoView;
///
/// 组件模型类
///
[SugarTable("t_goview_component")]
public class GoviewComponent
{
[SugarColumn(IsPrimaryKey = true, ColumnName = "id")]
public string Id { get; set; }
///
/// 组件名称
///
[SugarColumn(ColumnName = "component_name")]
public string ComponentName { get; set; }
[SugarColumn(IsNullable = true, ColumnName = "create_time")]
public string CreateTime { get; set; }
///
/// 创建人id
///
[SugarColumn(ColumnName = "create_user_id")]
public string CreateUserId { get; set; }
///
/// 组件数据
///
[SugarColumn(ColumnName = "component_data")]
public string ComponentData { get; set; }
}