username@email.com
2024-07-24 294494e5559dcc92670dd9800caf976853aff876
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    public class OrderBanciDTO
    {
        public string Id { get; set; }
        public string Banci { get; set; }
        public DateTime? Shijian { get; set; }
        public string ShijianName { get; set; }
        public DateTime? Shijianend { get; set; }
        public string ShijianendName { get; set; }
        public string Didian { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
        public List<OrderBanciDtlDTO> orderBanciDtlDTOs{ get; set; }
 
        public List<List<OrderBanciZuoweiDTO>> orderBanciZuoweiDTOs { get; set; }
        public string Mingcheng { get; set; }
 
        public int? Renshu { get; set; }
        public int? Hang { get; set; }
        public int? Lie { get; set; }
 
        public string Fenzu { get; set; }
        public int? BannerId { get; set; }
 
        public string Shangxiawu { get; set; }
        public string ShangxiawuName { get; set; }
 
        public decimal? Jiage { get; set; }
        public decimal? Jifen { get; set; }
        public string JiageName { get; set; }
        public string JifenName { get; set; }
 
        public string Shixiamg { get; set; }
        public string Zhujiangren { get; set; }
 
        public int? Sort { get; set; }
 
        public string Shijiandtl { get; set; }
        public string img_url { get; set; }//图片
        public decimal? point { get; set; }//积分
        public decimal? sell_price { get; set; } //售价
        public string title { get; set; } //产品名称
        public string type { get; set; }
 
        public string id { get; set; }
 
        public string[] SeatID { get; set; }
    }
 
    public class OrderBanciDTOSearch : SearchEntity
    {
        public string Banci { get; set; }
 
        public string Shijian { get; set; }
 
        public string Didian { get; set; }
 
        public string Createtime { get; set; }
    }
 
 
 
 
    public class LockUser 
    {
        public string ID { get; set; }
 
        public string Name { get; set; }
 
        public string LockSeatsUserID { get; set; }
 
        public string ClassID { get; set; }
    }
 
 
    public class BanciFanhui
    {
   
 
        public string name { get; set; }
 
        public string value { get; set; }
 
    }
}