using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.EntityAudit
{
public class B_Audit_Querysql
{
[Key]
///
///
///
public int Id { get; set; }
///
///
/// 默认值:
///
public string Name { get; set; }
public string QueryKey { get; set; }
///
///
/// 默认值:
///
public string Querytemp { get; set; }
///
///
/// 默认值:
///
public string Subquery { get; set; }
///
///
/// 默认值:
///
public string Querytype { get; set; }
///
///
/// 默认值:
///
public string Querysql { get; set; }
///
///
///
public DateTime? Ctime { get; set; }
}
}