ConfiguretView.cs 573 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel
  6. {
  7. public class ConfiguretView
  8. {
  9. /// <summary>
  10. /// 属性(查询的列名)
  11. /// </summary>
  12. public string Attribute { get; set; }
  13. /// <summary>
  14. /// 条件 (查询的条件 如 > <= > )
  15. /// </summary>
  16. public string Condition { get; set; }
  17. /// <summary>
  18. /// 值 (文本输入的值)
  19. /// </summary>
  20. public string ConditionValue { get; set; }
  21. }
  22. }