using System;
using System.Collections;
using BP.DA;
using BP.En;
using BP.Sys;
namespace BP.ZS
{
///
/// 乡镇街道 attr
///
public class XiangZhenJieDaoAttr : EntityNoNameAttr
{
}
///
/// 乡镇街道
///
public class XiangZhenJieDao : EntityNoName
{
#region 属性.
///
/// UI界面上的访问控制
///
public override UAC HisUAC
{
get
{
UAC uac = new UAC();
uac.OpenAll();
return uac;
}
}
#endregion 属性.
#region 构造方法
///
/// 乡镇街道
///
public XiangZhenJieDao()
{
}
///
/// 乡镇街道
///
///
public XiangZhenJieDao(string _No) : base(_No) { }
///
/// 乡镇街道Map
///
public override Map EnMap
{
get
{
if (this._enMap != null)
return this._enMap;
#region 流程的基本字段
Map map = new Map("ZS_XiangZhenJieDao", "乡镇街道");
// map.IsView = true;
map.AddTBStringPK(XiangZhenJieDaoAttr.No, null, "编号", true, true, 0, 50, 50);
map.AddTBString(XiangZhenJieDaoAttr.Name, null, "名称", false, true, 0, 50, 50);
this._enMap = map;
return this._enMap;
#endregion 流程的基本字段
}
}
#endregion
}
///
/// 乡镇街道s
///
public class XiangZhenJieDaos : EntitiesNoName
{
///
/// 乡镇街道s
///
public XiangZhenJieDaos() { }
///
/// 得到它的 Entity
///
public override Entity GetNewEntity
{
get
{
return new XiangZhenJieDao();
}
}
}
}