using SQLite; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FLY.Thick.Blowing.Server.Model { /// /// 原始数据.数据库 对象 /// public class OrgDbModel : SQLiteDbContext { /// /// Sign 表对象 /// public DBTable TbSign { get; } = new DBTable(); /// /// Roll 表对象 /// public DBTable TbRoll { get; } = new DBTable(); /// /// /// /// public OrgDbModel(string dbpath) : base(dbpath) { } /// /// /// public OrgDbModel() : this(@"D:\blowingdata\thickness_fix_org.sqlite3") { } } }