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.

263 lines
6.9 KiB
Plaintext

using System;
using System.Collections;
using BP.DA;
using BP.En;
using BP.Difference;
using BP;
namespace BP.Sys
{
/// <summary>
/// 用户日志
/// </summary>
public class UserLogAttr
{
/// <summary>
/// 名称
/// </summary>
public const string EmpNo = "EmpNo";
/// <summary>
/// 用户名
/// </summary>
public const string EmpName = "EmpName";
/// <summary>
/// 日志标记
/// </summary>
public const string LogFlag = "LogFlag";
public const string LevelText = "LevelText";
/// <summary>
/// 处理内容
/// </summary>
public const string Docs = "Docs";
/// <summary>
/// 记录日期
/// </summary>
public const string RDT = "RDT";
/// <summary>
/// IP地址
/// </summary>
public const string IP = "IP";
}
/// <summary>
/// 用户日志
/// </summary>
public class UserLog: EntityMyPK
{
public override UAC HisUAC
{
get
{
var uac = new UAC();
uac.Readonly();
return uac;
}
}
#region 基本属性
public string IP
{
get
{
return this.GetValStringByKey(UserLogAttr.IP);
}
set
{
this.SetValByKey(UserLogAttr.IP, value);
}
}
/// <summary>
/// 日志标记键
/// </summary>
public string LogFlag
{
get
{
return this.GetValStringByKey(UserLogAttr.LogFlag);
}
set
{
this.SetValByKey(UserLogAttr.LogFlag, value);
}
}
/// <summary>
/// FK_Emp
/// </summary>
public string EmpNo
{
get
{
return this.GetValStringByKey(UserLogAttr.EmpNo) ;
}
set
{
this.SetValByKey(UserLogAttr.EmpNo, value) ;
}
}
public string EmpName
{
get
{
return this.GetValStringByKey(UserLogAttr.EmpName);
}
set
{
this.SetValByKey(UserLogAttr.EmpName, value);
}
}
public string RDT
{
get
{
return this.GetValStringByKey(UserLogAttr.RDT);
}
set
{
this.SetValByKey(UserLogAttr.RDT, value);
}
}
public string Docs
{
get
{
return this.GetValStringByKey(UserLogAttr.Docs);
}
set
{
this.SetValByKey(UserLogAttr.Docs, value);
}
}
#endregion
#region 构造方法
/// <summary>
/// 用户日志
/// </summary>
public UserLog()
{
}
/// <summary>
/// EnMap
/// </summary>
public override Map EnMap
{
get
{
if (this._enMap != null)
return this._enMap;
Map map = new Map("Sys_UserLogT", "用户日志");
map.AddMyPK();
map.AddTBString(UserLogAttr.EmpNo, null, "用户账号", true, true, 0, 50, 20);
map.AddTBString(UserLogAttr.EmpName, null, "用户名", true, true, 0, 30, 20);
map.AddTBString(UserLogAttr.RDT, null, "记录日期", true, true, 0, 20, 20);
map.AddTBString(UserLogAttr.IP, null, "IP", true, true, 0, 200, 20);
map.AddTBStringDoc(UserLogAttr.Docs, null, "说明", true, true, true);
//map.AddDDLEntities(UserLogAttr.LogFlag, null, "类型", new UserLogTypes(), false);
//map.AddDDLEntities(UserLogAttr.Level, null, "级别", new UserLogLevels(), false);
map.AddTBString(UserLogAttr.LogFlag, null, "类型", true, true, 0, 200, 20);
map.AddTBString(UserLogAttr.LevelText, null, "级别", true, true, 0, 200, 20);
map.DTSearchKey = UserLogAttr.RDT;
map.DTSearchWay = DTSearchWay.ByDate;
//查询条件.
map.AddSearchAttr(UserLogAttr.LevelText);
map.AddSearchAttr(UserLogAttr.LogFlag);
this._enMap = map;
return this._enMap;
}
}
#endregion
protected override bool beforeInsert()
{
this.setMyPK(DBAccess.GenerGUID());
this.RDT = DataType.CurrentDateTime;
if (BP.Difference.SystemConfig.IsBSsystem)
this.IP = BP.Difference.Glo.GetIP;
if (DataType.IsNullOrEmpty(this.EmpNo) == true)
{
this.EmpNo = BP.Web.WebUser.No;
this.EmpName = BP.Web.WebUser.Name;
}
return base.beforeInsert();
}
#region 重写
public override Entities GetNewEntities
{
get { return new UserLogs(); }
}
#endregion 重写
}
/// <summary>
/// 用户日志s
/// </summary>
public class UserLogs : EntitiesMyPK
{
#region 构造
public UserLogs()
{
}
/// <summary>
///
/// </summary>
/// <param name="emp"></param>
public UserLogs(string emp)
{
QueryObject qo = new QueryObject(this);
qo.AddWhere(UserLogAttr.EmpNo, emp);
qo.DoQuery();
}
#endregion
#region 重写
/// <summary>
/// 得到它的 Entity
/// </summary>
public override Entity GetNewEntity
{
get
{
return new UserLog();
}
}
#endregion
#region 为了适应自动翻译成java的需要,把实体转换成List.
/// <summary>
/// 转化成list
/// </summary>
/// <returns>List</returns>
public System.Collections.Generic.List<UserLog> Tolist()
{
System.Collections.Generic.List<UserLog> list = new System.Collections.Generic.List<UserLog>();
for (int i = 0; i < this.Count; i++)
{
list.Add((UserLog)this[i]);
}
return list;
}
#endregion 为了适应自动翻译成java的需要,把实体转换成List.
#region 为了适应自动翻译成java的需要,把实体转换成IList, c#代码调用会出错误。
/// <summary>
/// 转化成list
/// </summary>
/// <returns>List</returns>
public System.Collections.Generic.IList<UserLog> ToJavaList()
{
return (System.Collections.Generic.IList<UserLog>)this;
}
#endregion 为了适应自动翻译成java的需要,把实体转换成IList, c#代码调用会出错误。
}
}