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