using System; using System.Data; using BP.DA; using BP.En; using BP.Port; namespace BP.JianYu { /// /// 监区 属性 /// public class JianQuAttr : EntityNoNameAttr { /// /// 监狱编号 /// public const string PrisonNo = "PrisonNo"; public const string Tel = "Tel"; } /// /// 监区 /// public class JianQu : BP.En.EntityNoName { #region 基本属性 /// /// 班主任 /// public string PrisonNo { get { return this.GetValStrByKey(JianQuAttr.PrisonNo); } set { this.SetValByKey(JianQuAttr.PrisonNo, value); } } #endregion #region 构造函数 /// /// 实体的权限控制 /// public override UAC HisUAC { get { UAC uac = new UAC(); if (BP.Web.WebUser.No == "zhoupeng" || BP.Web.WebUser.No.Equals("admin") == true) { uac.IsDelete = true; uac.IsUpdate = true; uac.IsInsert = true; } else { uac.IsDelete = false; uac.IsUpdate = false; uac.IsInsert = false; } return uac; } } /// /// 监区 /// public JianQu() { } public JianQu(string no) : base(no) { } /// /// Map /// public override Map EnMap { get { if (this._enMap != null) return this._enMap; Map map = new Map("JY_JianQu", "监区"); #region 字段 map.AddTBStringPK(JianQuAttr.No, null, "编号", true, true, 3, 3, 50); map.AddTBString(JianQuAttr.Name, null, "名称", true, false, 0, 50, 200); map.AddTBString(JianQuAttr.PrisonNo, null, "监狱编号", true, false, 0, 50, 200); // map.AddDDLEntities(JianQuAttr.PrisonNo, null, "监狱", new Prisons(), false); //map.AddTBString(JianQuAttr.PrisonNo, null, "班主任", true, false, 0, 50, 200); // map.AddTBString(JianQuAttr.Tel, null, "班主任电话", true, false, 0, 50, 200); #endregion this._enMap = map; return this._enMap; } } public override Entities GetNewEntities { get { return new JianQus(); } } #endregion } /// /// 监区s /// public class JianQus : BP.En.EntitiesNoName { #region 重写 /// /// 得到它的 Entity /// public override Entity GetNewEntity { get { return new JianQu(); } } /// /// 查询全部 /// /// public override int RetrieveAll() { string no = BP.Web.WebUser.FK_Dept; no = no.Substring(0, 4); return this.Retrieve("PrisonNo", no); // return base.RetrieveAll(); } #endregion #region 构造方法 /// /// 监区s /// public JianQus() { } #endregion } }