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.
74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//user_action
|
|
public class user_action
|
|
{
|
|
/// <summary>
|
|
/// 惟一编号
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 行为表GID
|
|
/// </summary>
|
|
private string _actionid;
|
|
public string ACTIONID
|
|
{
|
|
get{ return _actionid; }
|
|
set{ _actionid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 用户表GID
|
|
/// </summary>
|
|
private string _userid;
|
|
public string USERID
|
|
{
|
|
get{ return _userid; }
|
|
set{ _userid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建人GID
|
|
/// </summary>
|
|
private string _createuser;
|
|
public string CREATEUSER
|
|
{
|
|
get{ return _createuser; }
|
|
set{ _createuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
private DateTime _createtime;
|
|
public DateTime CREATETIME
|
|
{
|
|
get{ return _createtime; }
|
|
set{ _createtime = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作人GID
|
|
/// </summary>
|
|
private string _modifieduser;
|
|
public string MODIFIEDUSER
|
|
{
|
|
get{ return _modifieduser; }
|
|
set{ _modifieduser = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
private DateTime? _modifiedtime;
|
|
public DateTime? MODIFIEDTIME
|
|
{
|
|
get{ return _modifiedtime; }
|
|
set{ _modifiedtime = value; }
|
|
}
|
|
}
|
|
}
|