12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Ant.Frame
- {
- public abstract class EntitiesBase
- {
- private string _OrderBy = "";
- /// <summary>
- /// 排序
- /// </summary>
- public string OrderBy
- {
- get { return _OrderBy; }
- set { _OrderBy = value; }
- }
- private EntityPersistType persistType;
- /// <summary>
- /// 操作类型
- /// </summary>
- public EntityPersistType PersistType
- {
- get { return persistType; }
- set { persistType = value; }
- }
- /// <summary>
- /// 模块
- /// </summary>
- public abstract string ModuleName { get; }
-
- }
- }
|