SACenter/SA.Entity/zxdcrm_audit_Models/BAuditQuerysql.cs

61 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
/// <summary>
///
///</summary>
[SugarTable("b_audit_querysql")]
public class b_audit_querysql
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
public int id { get; set; }
/// <summary>
///
/// 默认值:
///</summary>
[SugarColumn(ColumnName="name" )]
public string name { get; set; } ="";
/// <summary>
///
/// 默认值:
///</summary>
[SugarColumn(ColumnName="querykey" )]
public string querykey { get; set; } ="";
/// <summary>
///
/// 默认值:
///</summary>
[SugarColumn(ColumnName="querytemp" )]
public string querytemp { get; set; } ="";
/// <summary>
///
/// 默认值:
///</summary>
[SugarColumn(ColumnName="subquery" )]
public string subquery { get; set; } ="";
/// <summary>
///
/// 默认值:
///</summary>
[SugarColumn(ColumnName="querytype" )]
public string querytype { get; set; } ="";
/// <summary>
///
/// 默认值:
///</summary>
[SugarColumn(ColumnName="querysql" )]
public string querysql { get; set; } ="";
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="ctime" )]
public DateTime? ctime { get; set; }
}
}