Files
g.hnyhua.cn/Mtxfw.Model/User_CZ_log.cs
2026-02-07 15:48:27 +08:00

83 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace Mtxfw.Model
{
/// <summary>
/// User_CZ_log:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class User_CZ_log
{
public User_CZ_log()
{}
#region Model
private Int64 _Id;
private int _MemberId;//会员用户名
private DateTime _AddTime;//操作时间
private string _IP;//操作ip
private string _Body;//操作内容
private int _UType; //会员类型0管理员1服务中心2会员 3会员动态
private int _gtype; //类型0总公司 1分公司 2分公司
/// <summary>
///
/// </summary>
public Int64 Id
{
set { _Id = value; }
get { return _Id; }
}
/// <summary>
///
/// </summary>
public int MemberId
{
set { _MemberId = value; }
get { return _MemberId; }
}
/// <summary>
///
/// </summary>
public DateTime AddTime
{
set { _AddTime = value; }
get { return _AddTime; }
}
/// <summary>
///
/// </summary>
public string IP
{
set { _IP = value; }
get { return _IP; }
}
/// <summary>
///
/// </summary>
public string Body
{
set { _Body = value; }
get { return _Body; }
}
/// <summary>
///
/// </summary>
public int UType
{
set { _UType = value; }
get { return _UType; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}