CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

4 个月前
1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. /// <summary>
  8. /// 自定义SQL语句类
  9. /// </summary>
  10. public class AutoSql
  11. {
  12. /// <summary>
  13. /// 名称(描述)
  14. /// </summary>
  15. public string ViewName { get; set; }
  16. /// <summary>
  17. /// sql语句
  18. /// </summary>
  19. public string ViewSql { get; set; }
  20. }
  21. }