29 lines
539 B
C#
29 lines
539 B
C#
|
using System;
|
|||
|
|
|||
|
namespace DataDocking.Entitys.alitools
|
|||
|
{
|
|||
|
public class MemberInfo
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int UserType { get; set; }
|
|||
|
|
|||
|
public string UserName { get; set; }
|
|||
|
|
|||
|
public int RecId { get; set; }
|
|||
|
|
|||
|
public double Point { get; set; }
|
|||
|
|
|||
|
public double SumPoint { get; set; }
|
|||
|
|
|||
|
public double TicPoint { get; set; }
|
|||
|
|
|||
|
public DateTime CrtTime { get; set; }
|
|||
|
|
|||
|
public string NickName { get; set; }
|
|||
|
|
|||
|
public string Remark { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|