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