SACenter/SA.Entity/zxdcrm_audit_Models/TModule.cs

76 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
/// 是否有效权限10否或待确定
/// 默认值: 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; }
}
}