using Api.Framework.Tools; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.Model { /// /// 积分改变记录 /// public class fl_point_hist : base_model { /// /// 用户ID /// public long uid { get; set; } /// /// 机器人id /// public long rid { get; set; } /// /// 改变的值 /// public double point { get; set; } /// /// 类型 /// public string type { get; set; } /// /// 内容 /// public string message { get; set; } /// /// 修改前积分 /// public double before_point { get; set; } /// /// 修改后积分 /// public double after_point { get; set; } /// /// 创建时间 /// public DateTime crt_time { get; set; } public fl_point_hist() { this.message = string.Empty; this.crt_time = DateTime.Now; } } }