123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CZTS.ORM
- {
- public class BuilderMod
- {
- private EntityPersistType persistType;
- /// <summary>
- /// 操作类型
- /// </summary>
- public EntityPersistType PersistType
- {
- get { return persistType; }
- set { persistType = value; }
- }
- private string _OrderBy = "";
- /// <summary>
- /// 排序
- /// </summary>
- public string OrderBy
- {
- get { return _OrderBy; }
- set { _OrderBy = value; }
- }
- /// <summary>
- /// 模块
- /// </summary>
- public string ModuleName { get; set; }
- private FieldValueCollection fields;
- /// <summary>
- /// 实体属性集合
- /// </summary>
- public FieldValueCollection Fields
- {
- get { return fields; }
- set { fields = value; }
- }
- private FieldValueCollection fieldslike;
- /// <summary>
- /// 实体属性集合
- /// </summary>
- public FieldValueCollection FlieldLikeValue
- {
- get { return fieldslike; }
- set { fieldslike = value; }
- }
- }
- }
|