using Api.Framework.Tools; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.Model { /// /// debug日志 /// public class fl_debug_log:base_model { /// /// 用户ID /// public long userid { get; set; } /// /// 消息 /// public string message { get; set; } /// /// 时间 /// public double time { get; set; } /// /// token /// public string token { get; set; } /// /// 创建时间 /// public DateTime crt_time { get; set; } } }