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.
222 lines
5.7 KiB
Plaintext
222 lines
5.7 KiB
Plaintext
using System;
|
|
using System.Collections;
|
|
using BP.DA;
|
|
using BP.En;
|
|
|
|
namespace BP.GPM
|
|
{
|
|
/// <summary>
|
|
/// 人员信息块
|
|
/// </summary>
|
|
public class BarEmpAttr : EntityNoNameAttr
|
|
{
|
|
/// <summary>
|
|
/// 顺序
|
|
/// </summary>
|
|
public const string Idx = "Idx";
|
|
/// <summary>
|
|
/// 信息快
|
|
/// </summary>
|
|
public const string FK_Bar = "FK_Bar";
|
|
/// <summary>
|
|
/// 人员
|
|
/// </summary>
|
|
public const string FK_Emp = "FK_Emp";
|
|
/// <summary>
|
|
/// 是否显示?
|
|
/// </summary>
|
|
public const string IsShow = "IsShow";
|
|
/// <summary>
|
|
/// 标题?
|
|
/// </summary>
|
|
public const string Title = "Title";
|
|
|
|
}
|
|
/// <summary>
|
|
/// 人员信息块
|
|
/// </summary>
|
|
public class BarEmp : EntityMyPK
|
|
{
|
|
#region 属性
|
|
public int Idx
|
|
{
|
|
get
|
|
{
|
|
return this.GetValIntByKey(BarEmpAttr.Idx);
|
|
}
|
|
set
|
|
{
|
|
this.SetValByKey(BarEmpAttr.Idx, value);
|
|
}
|
|
}
|
|
public string FK_Bar
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(BarEmpAttr.FK_Bar);
|
|
}
|
|
set
|
|
{
|
|
this.SetValByKey(BarEmpAttr.FK_Bar, value);
|
|
}
|
|
}
|
|
public string FK_Emp
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(BarEmpAttr.FK_Emp);
|
|
}
|
|
set
|
|
{
|
|
this.SetValByKey(BarEmpAttr.FK_Emp, value);
|
|
}
|
|
}
|
|
public bool IsShow
|
|
{
|
|
get
|
|
{
|
|
return this.GetValBooleanByKey(BarEmpAttr.IsShow);
|
|
}
|
|
set
|
|
{
|
|
this.SetValByKey(BarEmpAttr.IsShow, value);
|
|
}
|
|
}
|
|
|
|
public string Title
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(BarEmpAttr.Title);
|
|
}
|
|
set
|
|
{
|
|
this.SetValByKey(BarEmpAttr.Title, value);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 构造方法
|
|
/// <summary>
|
|
/// 人员信息块
|
|
/// </summary>
|
|
public BarEmp()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// EnMap
|
|
/// </summary>
|
|
public override Map EnMap
|
|
{
|
|
get
|
|
{
|
|
if (this._enMap != null)
|
|
return this._enMap;
|
|
Map map = new Map("GPM_BarEmp", "人员信息块");
|
|
map.setEnType(EnType.Sys);
|
|
|
|
map.AddMyPK(); // 主键是由: FK_Bar+"_"+FK_Emp 组成的,它是一个复合主键.
|
|
map.AddTBString(BarEmpAttr.FK_Bar, null, "信息块编号", true, false, 0, 90, 20);
|
|
map.AddTBString(BarEmpAttr.FK_Emp, null, "人员编号", true, false, 0, 90, 20);
|
|
map.AddTBString(BarEmpAttr.Title, null, "标题", true, false, 0, 3900, 20);
|
|
map.AddTBInt(BarEmpAttr.IsShow, 1, "是否显示", false, true);
|
|
map.AddTBInt(BarEmpAttr.Idx, 0, "显示顺序", false, true);
|
|
|
|
this._enMap = map;
|
|
return this._enMap;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 显示与隐藏.
|
|
public void DoUp()
|
|
{
|
|
this.DoOrderUp(BarEmpAttr.FK_Bar, this.FK_Bar, BarEmpAttr.Idx);
|
|
}
|
|
public void DoDown()
|
|
{
|
|
this.DoOrderDown(BarEmpAttr.FK_Bar, this.FK_Bar, BarEmpAttr.Idx);
|
|
}
|
|
public void DoHidShow()
|
|
{
|
|
this.IsShow = this.IsShow;
|
|
this.Update();
|
|
}
|
|
|
|
|
|
|
|
#endregion 显示与隐藏.
|
|
}
|
|
/// <summary>
|
|
/// 人员信息块s
|
|
/// </summary>
|
|
public class BarEmps : EntitiesMyPK
|
|
{
|
|
#region 构造
|
|
/// <summary>
|
|
/// 人员信息块s
|
|
/// </summary>
|
|
public BarEmps()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// 得到它的 Entity
|
|
/// </summary>
|
|
public override Entity GetNewEntity
|
|
{
|
|
get
|
|
{
|
|
return new BarEmp();
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
public string InitMyBars()
|
|
{
|
|
Bars bars = new Bars();
|
|
bars.RetrieveAll();
|
|
foreach (Bar b in bars)
|
|
{
|
|
BarEmp be = new BarEmp();
|
|
be.setMyPK( b.No + "_" + BP.Web.WebUser.No);
|
|
if (be.RetrieveFromDBSources() == 1)
|
|
continue;
|
|
|
|
be.FK_Bar = b.No;
|
|
be.FK_Emp = BP.Web.WebUser.No;
|
|
be.IsShow = true;
|
|
be.Title = b.Name;
|
|
be.Insert();
|
|
}
|
|
|
|
return "执行成功";
|
|
}
|
|
|
|
#region 为了适应自动翻译成java的需要,把实体转换成List.
|
|
/// <summary>
|
|
/// 转化成 java list,C#不能调用.
|
|
/// </summary>
|
|
/// <returns>List</returns>
|
|
public System.Collections.Generic.IList<BarEmp> ToJavaList()
|
|
{
|
|
return (System.Collections.Generic.IList<BarEmp>)this;
|
|
}
|
|
/// <summary>
|
|
/// 转化成list
|
|
/// </summary>
|
|
/// <returns>List</returns>
|
|
public System.Collections.Generic.List<BarEmp> Tolist()
|
|
{
|
|
System.Collections.Generic.List<BarEmp> list = new System.Collections.Generic.List<BarEmp>();
|
|
for (int i = 0; i < this.Count; i++)
|
|
{
|
|
list.Add((BarEmp)this[i]);
|
|
}
|
|
return list;
|
|
}
|
|
#endregion 为了适应自动翻译成java的需要,把实体转换成List.
|
|
}
|
|
}
|