📄 specialofferamountinfo.vb
字号:
Namespace NetShopForge.Library.SpecialOffer
Public Class SpecialOfferAmountInfo
Private _offerid As Integer
Private _minamount As Decimal
Private _maxaomount As Decimal
Private _discounttype As DiscountType
Private _discountexceed As Decimal
Private _Type As String
Private _Type2 As Integer
Public Sub New()
_minamount = 0.0
_maxaomount = 0.0
_discounttype = SpecialOffer.DiscountType.Absolute
_discountexceed = 0.0
End Sub
Public Property OfferID() As Integer
Get
Return _offerid
End Get
Set(ByVal Value As Integer)
_offerid = Value
End Set
End Property
Public Property MinAmount() As Decimal
Get
Return _minamount
End Get
Set(ByVal Value As Decimal)
_minamount = Value
End Set
End Property
Public Property MaxAomount() As Decimal
Get
Return _maxaomount
End Get
Set(ByVal Value As Decimal)
_maxaomount = Value
End Set
End Property
Public Property DisCountType() As DiscountType
Get
Return _discounttype
End Get
Set(ByVal Value As DiscountType)
_discounttype = Value
End Set
End Property
Public Property DiscountExceed() As Decimal
Get
Return _discountexceed
End Get
Set(ByVal Value As Decimal)
_discountexceed = Value
End Set
End Property
Public Property Type() As String
Get
Return _Type
End Get
Set(ByVal Value As String)
_Type = Value
End Set
End Property
Public Property Type2() As Integer
Get
Return _Type2
End Get
Set(ByVal Value As Integer)
_Type2 = Value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -