using Api.Framework.Enums; using Api.Framework.SDK; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PointManage.Entitys { public class pointlog_list_temp { /// /// 平台类型 /// public ChatType chattype { get; set; } /// /// 用户账号 /// public string username { get; set; } /// /// 用户昵称 /// public string usernick { get; set; } /// /// 操作积分 /// public double point { get; set; } /// /// 平台类型 /// public string pointtype { get; set; } /// /// /// public string message { get; set; } /// /// /// public DateTime crt_time { get; set; } /// /// 修改前积分 /// public double before_point { get; set; } /// /// 修改后积分 /// public double after_point { get; set; } } }