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