1
2
3
4
5
6
7
8
9
10
11
12
| using HH.WCS.Mobox3.KeKou.models;
| using SqlSugar;
| using System;
|
| namespace HH.WCS.Mobox3.KeKou {
|
| [SugarTable("TN_Location_Production")]
| public class KeKouSettings : BaseModel {
| public string deviceName { get; set; }
| public string location { get; set; }
| }
| }
|
|