using FLY.OBJComponents.Server.Model; using SQLite; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FLY.FeedbackRenZiJia.Server.Model { public class DBModel : SQLiteDbContext, IErrorDBModel { public DBTable TbThickHeat { get; } = new DBTable(); public DBTable TbError { get; } = new DBTable(); public DBModel(string dbpath) : base(dbpath) { } public DBModel() : this(@"D:\flydata\airring_history.sqlite3") { } } }