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.0 KiB
C#
218 lines
6.0 KiB
C#
using System;
|
|
using System.Data;
|
|
using BP.DA;
|
|
using BP.En;
|
|
|
|
namespace BP.Port
|
|
{
|
|
/// <summary>
|
|
/// 部门角色人员对应
|
|
/// </summary>
|
|
public class DeptEmpStationAttr
|
|
{
|
|
#region 基本属性
|
|
/// <summary>
|
|
/// 部门
|
|
/// </summary>
|
|
public const string FK_Dept="FK_Dept";
|
|
/// <summary>
|
|
/// 角色
|
|
/// </summary>
|
|
public const string FK_Station="FK_Station";
|
|
/// <summary>
|
|
/// 人员
|
|
/// </summary>
|
|
public const string FK_Emp = "FK_Emp";
|
|
/// <summary>
|
|
/// 组织编码
|
|
/// </summary>
|
|
public const string OrgNo = "OrgNo";
|
|
#endregion
|
|
}
|
|
/// <summary>
|
|
/// 部门角色人员对应 的摘要说明。
|
|
/// </summary>
|
|
public class DeptEmpStation : EntityMyPK
|
|
{
|
|
#region 基本属性
|
|
/// <summary>
|
|
/// UI界面上的访问控制
|
|
/// </summary>
|
|
public override UAC HisUAC
|
|
{
|
|
get
|
|
{
|
|
UAC uac = new UAC();
|
|
uac.OpenForSysAdmin();
|
|
return uac;
|
|
}
|
|
}
|
|
public string OrgNo
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(DeptEmpStationAttr.OrgNo);
|
|
}
|
|
set
|
|
{
|
|
SetValByKey(DeptEmpStationAttr.OrgNo, value);
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 人员
|
|
/// </summary>
|
|
public string EmpNo
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(DeptEmpStationAttr.FK_Emp);
|
|
}
|
|
set
|
|
{
|
|
SetValByKey(DeptEmpStationAttr.FK_Emp, value);
|
|
this.setMyPK(this.DeptNo + "_" + this.EmpNo + "_"+this.StationNo);
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 部门
|
|
/// </summary>
|
|
public string DeptNo
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(DeptEmpStationAttr.FK_Dept);
|
|
}
|
|
set
|
|
{
|
|
SetValByKey(DeptEmpStationAttr.FK_Dept, value);
|
|
this.setMyPK(this.DeptNo + "_" + this.EmpNo + "_" + this.StationNo);
|
|
}
|
|
}
|
|
public string StationT
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(DeptEmpStationAttr.FK_Station);
|
|
}
|
|
}
|
|
/// <summary>
|
|
///角色
|
|
/// </summary>
|
|
public string StationNo
|
|
{
|
|
get
|
|
{
|
|
return this.GetValStringByKey(DeptEmpStationAttr.FK_Station);
|
|
}
|
|
set
|
|
{
|
|
SetValByKey(DeptEmpStationAttr.FK_Station, value);
|
|
this.setMyPK(this.DeptNo + "_" + this.EmpNo + "_" + this.StationNo);
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 构造函数
|
|
/// <summary>
|
|
/// 工作部门角色人员对应
|
|
/// </summary>
|
|
public DeptEmpStation() { }
|
|
/// <summary>
|
|
/// 重写基类方法
|
|
/// </summary>
|
|
public override Map EnMap
|
|
{
|
|
get
|
|
{
|
|
if (this._enMap != null)
|
|
return this._enMap;
|
|
|
|
Map map = new Map("Port_DeptEmpStation", "部门角色人员对应");
|
|
|
|
map.AddTBStringPK("MyPK", null, "主键MyPK", false, true, 1, 150, 10);
|
|
map.AddTBString(DeptEmpStationAttr.FK_Dept, null, "部门", true, true, 1, 100, 1);
|
|
map.AddTBString(DeptEmpStationAttr.FK_Station, null, "角色", true, true, 1, 50, 1);
|
|
map.AddTBString(DeptEmpStationAttr.FK_Emp, null, "操作员", true, true, 1, 100, 1);
|
|
map.AddTBString(DeptEmpAttr.OrgNo, null, "组织编码", true, true, 0, 50, 50);
|
|
|
|
this._enMap = map;
|
|
return this._enMap;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 更新删除前做的事情
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected override bool beforeUpdateInsertAction()
|
|
{
|
|
//if(BP.Difference.SystemConfig.CCBPMRunModel == BP.Sys.CCBPMRunModel.SAAS)
|
|
// this.setMyPK(this.DeptNo + "_" + this.EmpNo.Replace(this.OrgNo+"_","") + "_" + this.StationNo);
|
|
//else
|
|
this.setMyPK(this.DeptNo + "_" + this.EmpNo + "_" + this.StationNo);
|
|
return base.beforeUpdateInsertAction();
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 部门角色人员对应
|
|
/// </summary>
|
|
public class DeptEmpStations : EntitiesMyPK
|
|
{
|
|
#region 构造
|
|
/// <summary>
|
|
/// 工作部门角色人员对应
|
|
/// </summary>
|
|
public DeptEmpStations()
|
|
{
|
|
}
|
|
#endregion
|
|
|
|
#region 方法
|
|
/// <summary>
|
|
/// 得到它的 Entity
|
|
/// </summary>
|
|
public override Entity GetNewEntity
|
|
{
|
|
get
|
|
{
|
|
return new DeptEmpStation();
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 为了适应自动翻译成java的需要,把实体转换成List.
|
|
/// <summary>
|
|
/// 转化成 java list,C#不能调用.
|
|
/// </summary>
|
|
/// <returns>List</returns>
|
|
public System.Collections.Generic.IList<DeptEmpStation> ToJavaList()
|
|
{
|
|
return (System.Collections.Generic.IList<DeptEmpStation>)this;
|
|
}
|
|
/// <summary>
|
|
/// 转化成list
|
|
/// </summary>
|
|
/// <returns>List</returns>
|
|
public System.Collections.Generic.List<DeptEmpStation> Tolist()
|
|
{
|
|
System.Collections.Generic.List<DeptEmpStation> list = new System.Collections.Generic.List<DeptEmpStation>();
|
|
for (int i = 0; i < this.Count; i++)
|
|
{
|
|
list.Add((DeptEmpStation)this[i]);
|
|
}
|
|
return list;
|
|
}
|
|
#endregion 为了适应自动翻译成java的需要,把实体转换成List.
|
|
|
|
#region 删除方法
|
|
public string DelteNotInEmp()
|
|
{
|
|
string sql = "DELETE FROM Port_DeptEmpStation WHERE FK_Emp NOT IN (SELECT No FROM Port_Emp)";
|
|
DBAccess.RunSQL(sql);
|
|
return "删除成功";
|
|
}
|
|
#endregion
|
|
}
|
|
}
|