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