username@email.com
2024-10-29 18a8fab394f764e5b30c48c8e0d6887ef7d44cbf
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
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace EC_SeckillInfo
{
    ///<summary>
    ///订单印刷参数表
    ///</summary>
    [SugarTable("EC_OrderPrintParameter")]
    public partial class EC_OrderPrintParameter
    {
           public EC_OrderPrintParameter(){
 
 
           }
           /// <summary>
           /// Desc:订单唯一编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int OrderId {get;set;}
 
           /// <summary>
           /// Desc:印刷参数
           /// Default:
           /// Nullable:False
           /// </summary>           
           public string PrintParameter {get;set;}
 
    }
}