You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
218 lines
6.4 KiB
Plaintext
218 lines
6.4 KiB
Plaintext
11 months ago
|
using System;
|
||
|
using System.Collections;
|
||
|
using BP.DA;
|
||
|
using BP.En;
|
||
|
namespace BP.Sys.FrmUI
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 手写签名版
|
||
|
/// </summary>
|
||
|
public class ExtHandWriting : EntityMyPK
|
||
|
{
|
||
|
#region 属性
|
||
|
/// <summary>
|
||
|
/// 目标
|
||
|
/// </summary>
|
||
|
public string Target
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return this.GetValStringByKey(MapAttrAttr.Tag1);
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this.SetValByKey(MapAttrAttr.Tag1, value);
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// URL
|
||
|
/// </summary>
|
||
|
public string URL
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return this.GetValStringByKey(MapAttrAttr.Tag2).Replace("#", "@");
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this.SetValByKey(MapAttrAttr.Tag2, value);
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// FK_MapData
|
||
|
/// </summary>
|
||
|
public string FrmID
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return this.GetValStrByKey(MapAttrAttr.FK_MapData);
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this.SetValByKey(MapAttrAttr.FK_MapData, value);
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 字段
|
||
|
/// </summary>
|
||
|
public string KeyOfEn
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return this.GetValStringByKey(MapAttrAttr.KeyOfEn);
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this.SetValByKey(MapAttrAttr.KeyOfEn, value);
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// Text
|
||
|
/// </summary>
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 手写签名版
|
||
|
/// </summary>
|
||
|
public ExtHandWriting()
|
||
|
{
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 手写签名版
|
||
|
/// </summary>
|
||
|
/// <param name="mypk"></param>
|
||
|
public ExtHandWriting(string mypk)
|
||
|
{
|
||
|
this.setMyPK(mypk);
|
||
|
this.Retrieve();
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// EnMap
|
||
|
/// </summary>
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 删除后清缓存
|
||
|
/// </summary>
|
||
|
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
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 手写签名版s
|
||
|
/// </summary>
|
||
|
public class ExtHandWritings : EntitiesMyPK
|
||
|
{
|
||
|
#region 构造
|
||
|
/// <summary>
|
||
|
/// 手写签名版s
|
||
|
/// </summary>
|
||
|
public ExtHandWritings()
|
||
|
{
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 得到它的 Entity
|
||
|
/// </summary>
|
||
|
public override Entity GetNewEntity
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return new ExtHandWriting();
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 为了适应自动翻译成java的需要,把实体转换成List.
|
||
|
/// <summary>
|
||
|
/// 转化成 java list,C#不能调用.
|
||
|
/// </summary>
|
||
|
/// <returns>List</returns>
|
||
|
public System.Collections.Generic.IList<ExtHandWriting> ToJavaList()
|
||
|
{
|
||
|
return (System.Collections.Generic.IList<ExtHandWriting>)this;
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 转化成list
|
||
|
/// </summary>
|
||
|
/// <returns>List</returns>
|
||
|
public System.Collections.Generic.List<ExtHandWriting> Tolist()
|
||
|
{
|
||
|
System.Collections.Generic.List<ExtHandWriting> list = new System.Collections.Generic.List<ExtHandWriting>();
|
||
|
for (int i = 0; i < this.Count; i++)
|
||
|
{
|
||
|
list.Add((ExtHandWriting)this[i]);
|
||
|
}
|
||
|
return list;
|
||
|
}
|
||
|
#endregion 为了适应自动翻译成java的需要,把实体转换成List.
|
||
|
}
|
||
|
}
|