wzp
2023-03-02 adee7a71ba7ab1b63cab63381dfe1846437853d6
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
 
using System;
 
namespace Model
{
 
    //订单表
  public class GwOrder
  {
        public string OrderId { get; set; }
 
        public string SpId { get; set; }
 
        public string ClientId { get; set; }
 
        public string Company { get; set; }
 
        public string ClientName { get; set; }
 
        public string ProductId { get; set; }
 
        public string ProductName { get; set; }
 
        public string ComboId { get; set; }
 
        public Int64 BasicNum { get; set; }
 
        public Int64 GivingNum { get; set; }
 
        public int Price { get; set; }
 
        public Int64 OrderNumTotal { get; set; }
 
        public Int64 OrderAmountTotal { get; set; }
 
        public Int64 PayAmount { get; set; }
 
        public Int64 BeforeBalanceNum { get; set; }
 
        public string Creator { get; set; }
 
        //各级审核人组合,以半角逗号分隔。
        public string Auditor { get; set; }
        
 
        public DateTime CreateTime { get; set; }
 
        //0-待审核(已提交);1-审核中;2-审核不通过;3-审核不通过;4-取消;
        //申请订单在未审核情况下可以取消。
        public int Status { get; set; }
 
        public string Remark { get; set; }
 
        //客户余额
        public long Balance { get; set; }
    }
}