1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using FLY.Thick.Blowing.Server.Model;
using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FLY.Thick.BlowingScan.Server.Model
{
/// <summary>
/// 原始数据 数据库对象
/// </summary>
public class OrgDbModel : SQLiteDbContext
{
/// <summary>
/// 转向信号表对象
/// </summary>
public DBTable<Db_Sign> TbSign { get; } = new DBTable<Db_Sign>();
/// <summary>
/// 辊信号表对象
/// </summary>
public DBTable<Db_Roll> TbRoll { get; } = new DBTable<Db_Roll>();
/// <summary>
/// 扫描数据表对象
/// </summary>
public DBTable<Db_OrgScanData> TbOrgScanData { get; } = new DBTable<Db_OrgScanData>();
/// <summary>
///
/// </summary>
/// <param name="dbpath"></param>
public OrgDbModel(string dbpath) : base(dbpath)
{
}
/// <summary>
///
/// </summary>
public OrgDbModel() : this(@"D:\blowingdata\thickness_scan_org.sqlite3")
{
}
}
}