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