using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace Ant.ORM
{
///
/// SQL注释
///
public class SqlNote
{
///
///
///
///
///
///
public SqlNote(string author,string sqldesc,StackTrace newstr)
{
this.Author = author;
this.SqlDesc = sqldesc;
this.NewSt = newstr;
}
///
///
///
public SqlNote()
{
}
///
/// 获取文件信息
///
public StackTrace NewSt { get; set; }
///
/// 作者
///
public string Author { get; set; }
///
/// 方法备注
///
public string SqlDesc { get; set; }
}
}