old_flsystem/应用/BackupAndImport/Entitys/alitools/MemberInfo.cs

29 lines
539 B
C#
Raw Normal View History

2022-09-29 10:35:00 +00:00
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; }
}
}