using System; namespace ZXDT.CallCenter.Model { /// /// T_Com_LogAction:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Com_LogAction { public T_Com_LogAction() { } #region Model private string _id; private string _adduser; private int _adduserid; private string _actionname; private string _actionurl; private DateTime _atime; private string _contentold; private string _contentnew; private string _tablename; private string _tableid; /// /// 主键 /// public string Id { set { _id = value; } get { return _id; } } /// /// 操作用户名 /// public string AddUser { set { _adduser = value; } get { return _adduser; } } /// /// 操作用户id /// public int AddUserId { set { _adduserid = value; } get { return _adduserid; } } /// /// /// public string ActionName { set { _actionname = value; } get { return _actionname; } } /// /// /// public string ActionUrl { set { _actionurl = value; } get { return _actionurl; } } /// /// /// public DateTime Atime { set { _atime = value; } get { return _atime; } } /// /// /// public string ContentOld { set { _contentold = value; } get { return _contentold; } } /// /// /// public string ContentNew { set { _contentnew = value; } get { return _contentnew; } } /// /// /// public string TableName { set { _tablename = value; } get { return _tablename; } } /// /// /// public string TableId { set { _tableid = value; } get { return _tableid; } } #endregion Model } }