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
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
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace EC_SeckillInfo
{
    ///<summary>
    ///电子商务系统奖品领取地址
    ///</summary>
    [SugarTable("EC_PrizeReciveAddress")]
    public partial class EC_PrizeReciveAddress
    {
           public EC_PrizeReciveAddress(){
 
 
           }
           /// <summary>
           /// Desc:编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           [SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
           public int Keyid {get;set;}
 
           /// <summary>
           /// Desc:省
           /// Default:
           /// Nullable:False
           /// </summary>           
           public string Province {get;set;}
 
           /// <summary>
           /// Desc:市
           /// Default:
           /// Nullable:False
           /// </summary>           
           public string City {get;set;}
 
           /// <summary>
           /// Desc:区
           /// Default:
           /// Nullable:False
           /// </summary>           
           public string County {get;set;}
 
           /// <summary>
           /// Desc:详细地址
           /// Default:
           /// Nullable:False
           /// </summary>           
           public string DetailedAddress {get;set;}
 
           /// <summary>
           /// Desc:工作时间
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string WorkTime {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;}
 
    }
}