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
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using SqlSugar;
| namespace Models
| {
| /// <summary>
| /// 订单印刷参数表
| ///</summary>
| [SugarTable("EC_OrderPrintParameter")]
| public class EC_OrderPrintParameter
| {
|
|
| /// <summary>
| /// 备 注:订单唯一编号
| /// 默认值:
| ///</summary>
| [SugarColumn(ColumnName="OrderId" ) ]
| public int OrderId { get; set; }
|
| /// <summary>
| /// 备 注:印刷参数
| /// 默认值:
| ///</summary>
| [SugarColumn(ColumnName="PrintParameter" ) ]
| public string PrintParameter { get; set; } = null!;
|
|
| }
|
| }
|
|