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