移动系统liao
2024-10-15 94da0698c01915b1e340415e080aa03050700d97
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace EC_SeckillInfo
{
    ///<summary>
    ///特价业务
    ///</summary>
    [SugarTable("EC_SeckillBusiness")]
    public partial class EC_SeckillBusiness
    {
           public EC_SeckillBusiness(){
 
 
           }
           /// <summary>
           /// Desc:业务编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           [SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
           public int Keyid {get;set;}
 
           /// <summary>
           /// Desc:会员编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public Guid MemberId {get;set;}
 
           /// <summary>
           /// Desc:印刷业务类型编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int PrintTypeId {get;set;}
 
           /// <summary>
           /// Desc:特价名称
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string BusinessName {get;set;}
 
           /// <summary>
           /// Desc:订单规格(详细)
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string Specifications {get;set;}
 
           /// <summary>
           /// Desc:总订单数
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int OrderCount {get;set;}
 
           /// <summary>
           /// Desc:每单印刷数量
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int PrintCount {get;set;}
 
           /// <summary>
           /// Desc:特价价格
           /// Default:
           /// Nullable:False
           /// </summary>           
           public decimal Price {get;set;}
 
           /// <summary>
           /// Desc:剩余订单数
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int SurplusOrderCount {get;set;}
 
           /// <summary>
           /// Desc:联系人
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string Contacts {get;set;}
 
           /// <summary>
           /// Desc:联系电话
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string ContactPhone {get;set;}
 
           /// <summary>
           /// Desc:QQ
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string QQ {get;set;}
 
           /// <summary>
           /// Desc:发布时间
           /// Default:
           /// Nullable:False
           /// </summary>           
           public DateTime CreateTime {get;set;}
 
           /// <summary>
           /// Desc:截止时间
           /// Default:
           /// Nullable:False
           /// </summary>           
           public DateTime EndTime {get;set;}
 
           /// <summary>
           /// Desc:状态
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int State {get;set;}
 
           /// <summary>
           /// Desc:最后修改时间
           /// Default:
           /// Nullable:False
           /// </summary>           
           public DateTime LastUpdateTime {get;set;}
 
           /// <summary>
           /// Desc:操作人
           /// Default:
           /// Nullable:False
           /// </summary>           
           public string Operator {get;set;}
 
           /// <summary>
           /// Desc:备注
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string Remark {get;set;}
 
    }
}