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
| using System;
| using System.Linq;
| using System.Text;
| using SqlSugar;
|
| namespace EC_SeckillInfo
| {
| ///<summary>
| ///印刷机器表
| ///</summary>
| [SugarTable("SysInquiry_PrintingMachine")]
| public partial class SysInquiry_PrintingMachine
| {
| public SysInquiry_PrintingMachine(){
|
|
| }
| /// <summary>
| /// Desc:编号
| /// Default:
| /// Nullable:False
| /// </summary>
| [SugarColumn(IsPrimaryKey=true)]
| public int KeyId {get;set;}
|
| /// <summary>
| /// Desc:名称
| /// Default:
| /// Nullable:False
| /// </summary>
| public string MachineName {get;set;}
|
| /// <summary>
| /// Desc:启用状态
| /// Default:
| /// Nullable:False
| /// </summary>
| public int Status {get;set;}
|
| }
| }
|
|