using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("b_audit_items")] public class b_audit_items { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// /// 默认值: /// [SugarColumn(ColumnName="item" )] public string item { get; set; } =""; /// /// /// 默认值: /// [SugarColumn(ColumnName="channel" )] public string channel { get; set; } =""; /// /// /// 默认值: /// [SugarColumn(ColumnName="channelquery" )] public string channelquery { get; set; } =""; /// /// /// 默认值: /// [SugarColumn(ColumnName="subqueryitems" )] public string subqueryitems { get; set; } =""; /// /// /// 默认值: /// [SugarColumn(ColumnName="querytype" )] public string querytype { get; set; } =""; /// /// /// [SugarColumn(ColumnName="ctime" )] public DateTime? ctime { get; set; } } }