BuilderMod.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CZTS.ORM
  6. {
  7. public class BuilderMod
  8. {
  9. private EntityPersistType persistType;
  10. /// <summary>
  11. /// 操作类型
  12. /// </summary>
  13. public EntityPersistType PersistType
  14. {
  15. get { return persistType; }
  16. set { persistType = value; }
  17. }
  18. private string _OrderBy = "";
  19. /// <summary>
  20. /// 排序
  21. /// </summary>
  22. public string OrderBy
  23. {
  24. get { return _OrderBy; }
  25. set { _OrderBy = value; }
  26. }
  27. /// <summary>
  28. /// 模块
  29. /// </summary>
  30. public string ModuleName { get; set; }
  31. private FieldValueCollection fields;
  32. /// <summary>
  33. /// 实体属性集合
  34. /// </summary>
  35. public FieldValueCollection Fields
  36. {
  37. get { return fields; }
  38. set { fields = value; }
  39. }
  40. private FieldValueCollection fieldslike;
  41. /// <summary>
  42. /// 实体属性集合
  43. /// </summary>
  44. public FieldValueCollection FlieldLikeValue
  45. {
  46. get { return fieldslike; }
  47. set { fieldslike = value; }
  48. }
  49. }
  50. }