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

📄 specialofferbonuspriceinfo.vb

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


    Public Class SpecialOfferBonusPriceInfo

        Private _productid As Integer
        Private _productName As String
        Private _bounstype As Integer
        Private _price As Decimal
        Private _adjustPrice As Decimal
        Private _offerID As Integer

        Public Property OfferID() As Integer
            Get
                Return _offerID
            End Get
            Set(ByVal Value As Integer)
                _offerID = Value
            End Set
        End Property

        Public Property ProductID() As Integer
            Get
                Return _productid
            End Get
            Set(ByVal Value As Integer)
                _productid = Value
            End Set
        End Property

        Public Property ProductName() As String
            Get
                Return _productName
            End Get
            Set(ByVal value As String)
                _productName = value
            End Set
        End Property
        ''' <summary>
        ''' Percent 0,absolute1
        ''' </summary>
        Public Property BounsType() As Integer
            Get
                Return _bounstype
            End Get
            Set(ByVal Value As Integer)
                _bounstype = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property Price() As Decimal
            Get
                Return _price
            End Get
            Set(ByVal Value As Decimal)
                _price = Value
            End Set
        End Property
        Public Property AdjustPrice() As Decimal
            Get
                Return _adjustPrice
            End Get
            Set(ByVal Value As Decimal)
                _adjustPrice = Value
            End Set
        End Property

        Public Sub New(ByVal offerID As Integer, ByVal productID As Integer, ByVal bounsType As Integer, ByVal adjustPrice As Decimal)
            _offerID = offerID
            _productid = productID
            _bounstype = bounsType
            _adjustPrice = adjustPrice
    
        End Sub

        Public Sub New()

        End Sub
    End Class
End Namespace

⌨️ 快捷键说明

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