using System; using System.Collections; using BP.DA; using BP.En; namespace BP.Sys.FrmUI { /// /// 手写签名版 /// public class ExtHandWriting : EntityMyPK { #region 属性 /// /// 目标 /// public string Target { get { return this.GetValStringByKey(MapAttrAttr.Tag1); } set { this.SetValByKey(MapAttrAttr.Tag1, value); } } /// /// URL /// public string URL { get { return this.GetValStringByKey(MapAttrAttr.Tag2).Replace("#", "@"); } set { this.SetValByKey(MapAttrAttr.Tag2, value); } } /// /// FK_MapData /// public string FrmID { get { return this.GetValStrByKey(MapAttrAttr.FK_MapData); } set { this.SetValByKey(MapAttrAttr.FK_MapData, value); } } /// /// 字段 /// public string KeyOfEn { get { return this.GetValStringByKey(MapAttrAttr.KeyOfEn); } set { this.SetValByKey(MapAttrAttr.KeyOfEn, value); } } /// /// Text /// public string Name { get { return this.GetValStrByKey(MapAttrAttr.Name); } set { this.SetValByKey(MapAttrAttr.Name, value); } } #endregion #region 构造方法 public override UAC HisUAC { get { UAC uac = new UAC(); uac.Readonly(); if (BP.Web.WebUser.No.Equals("admin")==true) { uac.IsUpdate = true; uac.IsDelete = true; } return uac; } } /// /// 手写签名版 /// public ExtHandWriting() { } /// /// 手写签名版 /// /// public ExtHandWriting(string mypk) { this.setMyPK(mypk); this.Retrieve(); } /// /// EnMap /// public override Map EnMap { get { if (this._enMap != null) return this._enMap; Map map = new Map("Sys_MapAttr", "手写签名版"); #region 通用的属性. map.AddMyPK(); map.AddTBString(MapAttrAttr.FK_MapData, null, "表单ID", true, true, 1, 100, 20); map.AddTBString(MapAttrAttr.KeyOfEn, null, "字段", true, true, 1, 100, 20); map.AddDDLSQL(MapAttrAttr.GroupID, 0, "显示的分组", MapAttrString.SQLOfGroupAttr, true); map.AddDDLSysEnum(MapAttrAttr.LabelColSpan, 1, "文本单元格数量", true, true, "ColSpanAttrString", "@1=跨1个单元格@2=跨2个单元格@3=跨3个单元格@4=跨4个单元格"); map.AddTBInt(MapAttrAttr.RowSpan, 1, "行数", true, false); map.AddTBFloat(MapAttrAttr.UIHeight, 1, "高度", true, false); map.AddTBFloat(MapAttrAttr.UIWidth, 1, "宽度", true, false); map.AddTBString(MapAttrAttr.Name, null, "名称", true, false, 0, 500, 20, true); #endregion 通用的属性. #region 个性化属性. // map.AddTBString(MapAttrAttr.Tag1, "_blank", "连接目标(_blank,_parent,_self)", true, false, 0, 20, 20); // map.AddTBString(MapAttrAttr.Tag2, null, "URL", true, false, 0, 500, 20, true); #endregion 个性化属性. this._enMap = map; return this._enMap; } } /// /// 删除后清缓存 /// protected override void afterDelete() { //删除相对应的rpt表中的字段 if (this.FrmID.Contains("ND") == true) { string fk_mapData = this.FrmID.Substring(0, this.FrmID.Length - 2) + "Rpt"; string sql = "DELETE FROM Sys_MapAttr WHERE FK_MapData='" + fk_mapData + "' AND KeyOfEn='" + this.KeyOfEn + "'"; DBAccess.RunSQL(sql); } //调用frmEditAction, 完成其他的操作. BP.Sys.CCFormAPI.AfterFrmEditAction(this.FrmID); base.afterDelete(); } #endregion } /// /// 手写签名版s /// public class ExtHandWritings : EntitiesMyPK { #region 构造 /// /// 手写签名版s /// public ExtHandWritings() { } /// /// 得到它的 Entity /// public override Entity GetNewEntity { get { return new ExtHandWriting(); } } #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((ExtHandWriting)this[i]); } return list; } #endregion 为了适应自动翻译成java的需要,把实体转换成List. } }