using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
///
///
[SugarTable("t_module")]
public class t_module
{
///
/// 权限id
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
public string id { get; set; } ="";
///
/// 权限名称
///
[SugarColumn(ColumnName="name" )]
public string name { get; set; } ="";
///
/// 是否有效权限,1:是;0:否或待确定
/// 默认值: 1
///
[SugarColumn(ColumnName="flag" )]
public byte? flag { get; set; }
///
///
///
[SugarColumn(ColumnName="appimgurl" )]
public string appimgurl { get; set; } ="";
///
///
/// 默认值: CURRENT_TIMESTAMP
///
[SugarColumn(ColumnName="ctime" )]
public DateTime? ctime { get; set; }
///
///
/// 默认值: CURRENT_TIMESTAMP
///
[SugarColumn(ColumnName="update_time" )]
public DateTime update_time { get; set; }
///
///
///
[SugarColumn(ColumnName="risklevel" )]
public int? risklevel { get; set; }
///
///
/// 默认值: 1
///
[SugarColumn(ColumnName="investtime" )]
public int investtime { get; set; }
///
///
/// 默认值: 1
///
[SugarColumn(ColumnName="investtype" )]
public int investtype { get; set; }
///
/// 是否合规0:不走合规 1:正常走合规
/// 默认值: 1
///
[SugarColumn(ColumnName="compliance" )]
public byte compliance { get; set; }
///
/// 10是pc
///
[SugarColumn(ColumnName="type" )]
public int type { get; set; }
}
}