EntitiesBase.cs 779 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Ant.Frame
  6. {
  7. public abstract class EntitiesBase
  8. {
  9. private string _OrderBy = "";
  10. /// <summary>
  11. /// 排序
  12. /// </summary>
  13. public string OrderBy
  14. {
  15. get { return _OrderBy; }
  16. set { _OrderBy = value; }
  17. }
  18. private EntityPersistType persistType;
  19. /// <summary>
  20. /// 操作类型
  21. /// </summary>
  22. public EntityPersistType PersistType
  23. {
  24. get { return persistType; }
  25. set { persistType = value; }
  26. }
  27. /// <summary>
  28. /// 模块
  29. /// </summary>
  30. public abstract string ModuleName { get; }
  31. }
  32. }