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