CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AutoSql.cs 456B

4 months ago
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. }