⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orderinfo.vb

📁 C#语言制作asp.net网上商店的
💻 VB
字号:

Namespace NetShopForge.Library.Order


    Public Class OrderInfo

        Private _orderid As Integer
        Private _orderNumber As String
        Private _userid As Integer
        Private _username As String
        Private _productsubtotalfee As Decimal
        Private _discountfee As Decimal
        Private _couponfee As Decimal
        Private _shippingfee As Decimal
        Private _totalfee As Decimal
        Private _orderstatus As OrderStatus
        Private _needinvoice As Boolean
        Private _invoicetitle As String
        Private _shippingmethodid As Integer
        Private _paymentmethodid As String
        Private _orderdate As DateTime
        Private _senddate As DateTime
        Private _customernote As String
        Private _shipname As String
        Private _shipaddress As String
        Private _shipaddress2 As String
        Private _shipcity As String
        Private _shipstate As String
        Private _shippostalcode As String
        Private _shipcounTry As String
        Private _shipArea As String
        Private _ShipAreaID As String
        Private _ShipPhone As String
        Private _billingArea As String
        Private _billingname As String
        Private _billingcounTry As String
        Private _billingstate As String
        Private _billingcity As String
        Private _billingaddress As String
        Private _billingpostalcode As String
        Private _billingphone As String
        Private _iscancel As Boolean
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property OrderID() As Integer
            Get
                Return _orderid
            End Get
            Set(ByVal Value As Integer)
                _orderid = Value
            End Set
        End Property


        Public Property OrderNumber() As String
            Get
                Return _orderNumber
            End Get
            Set(ByVal value As String)
                _orderNumber = value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property UserID() As Integer
            Get
                Return _userid
            End Get
            Set(ByVal Value As Integer)
                _userid = Value
            End Set
        End Property

        Public Property UserName() As String
            Get
                Return _username
            End Get
            Set(ByVal Value As String)
                _username = Value
            End Set
        End Property

        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ProductSubtotalFee() As Decimal
            Get
                Return _productsubtotalfee
            End Get
            Set(ByVal Value As Decimal)
                _productsubtotalfee = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property DiscountFee() As Decimal
            Get
                Return _discountfee
            End Get
            Set(ByVal Value As Decimal)
                _discountfee = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property CouponFee() As Decimal
            Get
                Return _couponfee
            End Get
            Set(ByVal Value As Decimal)
                _couponfee = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShippingFee() As Decimal
            Get
                Return _shippingfee
            End Get
            Set(ByVal Value As Decimal)
                _shippingfee = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property TotalFee() As Decimal
            Get
                Return _totalfee
            End Get
            Set(ByVal Value As Decimal)
                _totalfee = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property OrderStatus() As OrderStatus
            Get
                Return _orderstatus
            End Get
            Set(ByVal Value As OrderStatus)
                _orderstatus = Value
            End Set
        End Property

        ''' <summary>
        ''' 
        ''' </summary>
        Public Property NeedInvoice() As Boolean
            Get
                Return _needinvoice
            End Get
            Set(ByVal Value As Boolean)
                _needinvoice = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property InvoiceTitle() As String
            Get
                Return _invoicetitle
            End Get
            Set(ByVal Value As String)
                _invoicetitle = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShippingMethodID() As Integer
            Get
                Return _shippingmethodid
            End Get
            Set(ByVal Value As Integer)
                _shippingmethodid = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property PaymentMethodID() As String
            Get
                Return _paymentmethodid
            End Get
            Set(ByVal Value As String)
                _paymentmethodid = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property OrderDate() As DateTime
            Get
                Return _orderdate
            End Get
            Set(ByVal Value As DateTime)
                _orderdate = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property SendDate() As DateTime
            Get
                Return _senddate
            End Get
            Set(ByVal Value As DateTime)
                _senddate = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property CustomerNote() As String
            Get
                Return _customernote
            End Get
            Set(ByVal Value As String)
                _customernote = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShipName() As String
            Get
                Return _shipname
            End Get
            Set(ByVal Value As String)
                _shipname = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShipAddress() As String
            Get
                Return _shipaddress
            End Get
            Set(ByVal Value As String)
                _shipaddress = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShipAddress2() As String
            Get
                Return _shipaddress2
            End Get
            Set(ByVal Value As String)
                _shipaddress2 = Value
            End Set
        End Property
        Public Property ShipArea() As String
            Get
                Return _shipArea
            End Get
            Set(ByVal Value As String)
                _shipArea = Value
            End Set
        End Property
        Public Property ShipAreaID() As String
            Get
                Return _ShipAreaID
            End Get
            Set(ByVal Value As String)
                _ShipAreaID = Value
            End Set
        End Property
        Public Property ShipCity() As String
            Get
                Return _shipcity
            End Get
            Set(ByVal Value As String)
                _shipcity = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShipState() As String
            Get
                Return _shipstate
            End Get
            Set(ByVal Value As String)
                _shipstate = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShipPostalCode() As String
            Get
                Return _shippostalcode
            End Get
            Set(ByVal Value As String)
                _shippostalcode = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ShipCountry() As String
            Get
                Return _shipcounTry
            End Get
            Set(ByVal Value As String)
                _shipcounTry = Value
            End Set
        End Property
        Public Property ShipPhone() As String
            Get
                Return _ShipPhone
            End Get
            Set(ByVal value As String)
                _ShipPhone = value
            End Set
        End Property
        Public Property BillingName() As String
            Get
                Return _billingname
            End Get
            Set(ByVal Value As String)
                _billingname = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property BillingCounTry() As String
            Get
                Return _billingcounTry
            End Get
            Set(ByVal Value As String)
                _billingcounTry = Value
            End Set
        End Property
        Public Property BillingArea() As String
            Get
                Return _billingArea
            End Get
            Set(ByVal Value As String)
                _billingArea = Value
            End Set
        End Property
        Public Property BillingState() As String
            Get
                Return _billingstate
            End Get
            Set(ByVal Value As String)
                _billingstate = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property BillingCity() As String
            Get
                Return _billingcity
            End Get
            Set(ByVal Value As String)
                _billingcity = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property BillingAddress() As String
            Get
                Return _billingaddress
            End Get
            Set(ByVal Value As String)
                _billingaddress = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property BillingPostalCode() As String
            Get
                Return _billingpostalcode
            End Get
            Set(ByVal Value As String)
                _billingpostalcode = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property BillingPhone() As String
            Get
                Return _billingphone
            End Get
            Set(ByVal Value As String)
                _billingphone = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property IsCancel() As Boolean
            Get
                Return _iscancel
            End Get
            Set(ByVal Value As Boolean)
                _iscancel = Value
            End Set
        End Property
    End Class





End Namespace



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -