| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- 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字段
- // <select id="SearchSysLog" parameterType="java.util.Map"
- // resultType="HashMap">
- // SELECT o.logid,
- // o.businessname,
- // o.funname,
- // o.operatorid,
- // o.operatorname,
- // o.operatortime,
- // o.operatorip,
- // o.state
- // FROM OPERATORLOG o
- // where o.operatorid =#{operatorid}
- //</select>
- #endregion
- /// <summary>
- /// 日志ID
- /// </summary>
- [PropertyDisc("logid")]
- public long logid { get; set; }
- /// <summary>
- /// 日志类型
- /// </summary>
- [PropertyDisc("businessname")]
- public string businessname { get; set; }
- /// <summary>
- /// 操作名称
- /// </summary>
- [PropertyDisc("funname")]
- public string funname { get; set; }
- /// <summary>
- /// 操作员ID
- /// </summary>
- [PropertyDisc("operatorid")]
- public string operatorid { get; set; }
- /// <summary>
- /// 操作员名称
- /// </summary>
- [PropertyDisc("operatorname")]
- public string operatorname { get; set; }
- /// <summary>
- /// 操作时间
- /// </summary>
- [PropertyDisc("operatortime")]
- public DateTime operatortime { get; set; }
- /// <summary>
- /// 操作IP
- /// </summary>
- [PropertyDisc("operatorip")]
- public string operatorip { get; set; }
- /// <summary>
- /// 操作状态
- /// </summary>
- [PropertyDisc("state")]
- public int state { get; set; }
- #region 注释
- // /// <summary>
- // /// 功能码
- // /// </summary>
- // [PropertyDisc("FunCode")]
- // public int Funcode { get; set; }
- // /// <summary>
- // /// ip
- // /// </summary>
- //[PropertyDisc("IP")]
- // public string IP { get; set; }
- // /// <summary>
- // ///账号
- // /// </summary>
- // [PropertyDisc("AccountCode")]
- // public string AccountCode { get; set; }
- // /// <summary>
- // /// 时间
- // /// </summary>
- // [PropertyDisc("OperateDate")]
- // public DateTime Operadate { get; set; }
- // /// <summary>
- // ///信息MsgName
- // /// </summary>
- // [PropertyDisc("MsgName")]
- // public string MsgName { get; set; }
- // /// <summary>
- // /// 状态
- // /// </summary>
- // [PropertyDisc("Status")]
- // public int Status { get; set; }
- // /// <summary>
- // /// 操作类型
- // /// </summary>
- // [PropertyDisc("OperateType")]
- // public int OperateType { get; set; }
- // public string OperateTypeDisplay
- // {
- // get
- // {
- // return OperateType+string.Empty;
- // }
- // }
- // public string StatusDisplay
- // {
- // get
- // {
- // return Status + string.Empty;
- // }
- // }
- #endregion
- }
- }
|