using System; using System.Data; using BP.DA; using BP.En; namespace BP.Demo.HNZY { public class CityDepartmentAttr : EntityNoNameAttr { } public class CityDepartment : EntityNoName { #region 构造函数 public override UAC HisUAC { get { UAC uac = new UAC(); uac.OpenForSysAdmin(); return uac; } } /// /// 教育局 /// public CityDepartment() { } public CityDepartment(string no) : base(no) { } /// /// Map /// public override Map EnMap { get { if (this._enMap != null) return this._enMap; Map map = new Map("CN_CityDepartment", "教育局"); #region 基本属性 map.CodeStruct = "4"; #endregion #region 字段 map.AddTBStringPK(CityDepartmentAttr.No, null, "编号", true, false, 0, 50, 50); map.AddTBString(CityDepartmentAttr.Name, null, "名称", true, false, 0, 50, 200); #endregion this._enMap = map; return this._enMap; } } #endregion } /// /// 教育局s /// public class CityDepartments : EntitiesNoName { #region /// /// 得到它的 Entity /// public override Entity GetNewEntity { get { return new CityDepartment(); } } #endregion #region 构造方法 /// /// 教育局s /// public CityDepartments() { } /// /// 教育局s /// /// public CityDepartments(string no) { this.Retrieve(CityDepartmentAttr.No, no); } #endregion #region 重写查询,add by zhoupeng 2015.09.30 为了适应能够从 webservice 数据源查询数据. /// /// 重写查询全部适应从WS取数据需要 /// /// public override int RetrieveAll() { //if (BP.Web.WebUser.No != "admin") // throw new Exception("@您没有查询的权限."); return base.RetrieveAll(); } /// /// 重写重数据源查询全部适应从WS取数据需要 /// /// public override int RetrieveAllFromDBSource() { return base.RetrieveAllFromDBSource(); } #endregion 重写查询. #region 为了适应自动翻译成java的需要,把实体转换成List. /// /// 转化成 java list,C#不能调用. /// /// List public System.Collections.Generic.IList ToJavaList() { return (System.Collections.Generic.IList)this; } /// /// 转化成list /// /// List public System.Collections.Generic.List Tolist() { System.Collections.Generic.List list = new System.Collections.Generic.List(); for (int i = 0; i < this.Count; i++) { list.Add((CityDepartment)this[i]); } return list; } #endregion 为了适应自动翻译成java的需要,把实体转换成List. } }