using System; using System.Collections; using BP.DA; using BP.En; namespace BP.Cloud { /// /// 角色类型 /// public class StationTypeAttr : EntityNoNameAttr { /// /// 排序字段 /// public const string Idx = "Idx"; /// /// 组织机构编号 /// public const string OrgNo = "OrgNo"; } /// /// 角色类型 /// public class StationType : EntityNoName { #region 属性 public string OrgNo { get { return this.GetValStrByKey(StationAttr.OrgNo); } set { this.SetValByKey(StationAttr.OrgNo, value); } } #endregion #region 实现基本的方方法 public override UAC HisUAC { get { UAC uac = new UAC(); uac.OpenForSysAdmin(); return uac; } } #endregion #region 构造方法 /// /// 角色类型 /// public StationType() { } /// /// 角色类型 /// /// public StationType(string _No) : base(_No) { } #endregion /// /// 角色类型Map /// public override Map EnMap { get { if (this._enMap != null) return this._enMap; Map map = new Map("Port_StationType", "角色类型"); map.CodeStruct="2"; map.AddTBStringPK(StationTypeAttr.No, null, "编号", false, false, 1, 40, 40); map.AddTBString(StationTypeAttr.Name, null, "名称", true, false, 1, 50, 40); map.AddTBInt(StationTypeAttr.Idx, 0, "顺序", false, false); map.AddTBString(StationTypeAttr.OrgNo, null, "组织机构编号", false, false, 0, 50, 40); //增加隐藏查询条件. map.AddHidden(StationTypeAttr.OrgNo, "=", BP.Web.WebUser.OrgNo); this._enMap = map; return this._enMap; } } protected override bool beforeInsert() { this.OrgNo = BP.Web.WebUser.OrgNo; return base.beforeInsert(); } protected override bool beforeDelete() { Stations ens = new Stations(); ens.Retrieve(StationAttr.FK_StationType, this.No); if (ens.Count > 0) throw new Exception("err@删除角色类型错误,该类型下有角色。"); return base.beforeDelete(); } } /// /// 角色类型 /// public class StationTypes : EntitiesNoName { /// /// 角色类型s /// public StationTypes() { } /// /// 得到它的 Entity /// public override Entity GetNewEntity { get { return new StationType(); } } public override int RetrieveAll() { return this.Retrieve(EmpAttr.OrgNo, BP.Web.WebUser.OrgNo); } #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((StationType)this[i]); } return list; } #endregion 为了适应自动翻译成java的需要,把实体转换成List. } }