using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/1/30 10:19:38
//Author
//Description Create
//----------------------------------------------------------------
using Muchinfo.MTPClient.Data.Helper;
namespace Muchinfo.MTPClient.Data.Model.Account
{
public class UserLog
{
#region SQL字段
//
#endregion
///
/// 日志ID
///
[PropertyDisc("logid")]
public long logid { get; set; }
///
/// 日志类型
///
[PropertyDisc("businessname")]
public string businessname { get; set; }
///
/// 操作名称
///
[PropertyDisc("funname")]
public string funname { get; set; }
///
/// 操作员ID
///
[PropertyDisc("operatorid")]
public string operatorid { get; set; }
///
/// 操作员名称
///
[PropertyDisc("operatorname")]
public string operatorname { get; set; }
///
/// 操作时间
///
[PropertyDisc("operatortime")]
public DateTime operatortime { get; set; }
///
/// 操作IP
///
[PropertyDisc("operatorip")]
public string operatorip { get; set; }
///
/// 操作状态
///
[PropertyDisc("state")]
public int state { get; set; }
#region 注释
// ///
// /// 功能码
// ///
// [PropertyDisc("FunCode")]
// public int Funcode { get; set; }
// ///
// /// ip
// ///
//[PropertyDisc("IP")]
// public string IP { get; set; }
// ///
// ///账号
// ///
// [PropertyDisc("AccountCode")]
// public string AccountCode { get; set; }
// ///
// /// 时间
// ///
// [PropertyDisc("OperateDate")]
// public DateTime Operadate { get; set; }
// ///
// ///信息MsgName
// ///
// [PropertyDisc("MsgName")]
// public string MsgName { get; set; }
// ///
// /// 状态
// ///
// [PropertyDisc("Status")]
// public int Status { get; set; }
// ///
// /// 操作类型
// ///
// [PropertyDisc("OperateType")]
// public int OperateType { get; set; }
// public string OperateTypeDisplay
// {
// get
// {
// return OperateType+string.Empty;
// }
// }
// public string StatusDisplay
// {
// get
// {
// return Status + string.Empty;
// }
// }
#endregion
}
}