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

📄 clsnorthwind2003.vb

📁 wrox出版社的另一套经典的VB2005数据库编程学习书籍,收集了书中源码,郑重推荐,电子书,电子书下载
💻 VB
字号:
'------------------------------------------------------------------------------
' <autogenerated>
'     This code was generated by a tool.
'     Runtime Version: 1.1.4322.573
'
'     Changes to this file may cause incorrect behavior and will be lost if 
'     the code is regenerated.
' </autogenerated>
'------------------------------------------------------------------------------

Option Strict Off
Option Explicit On

Imports System.Xml.Serialization

'
'This source code was auto-generated by xsd, Version=1.1.4322.573.
'

'<remarks/>
<System.Xml.Serialization.XmlRootAttribute([Namespace]:="", IsNullable:=false)>  _
Public Class Northwind
    
    '<remarks/>
    <System.Xml.Serialization.XmlElementAttribute("Customers")>  _
    Public Customers() As NorthwindCustomers
    
    '<remarks/>
    <System.Xml.Serialization.XmlElementAttribute("Orders")>  _
    Public Orders() As NorthwindOrders
    
    '<remarks/>
    <System.Xml.Serialization.XmlElementAttribute("Order_Details")>  _
    Public Order_Details() As NorthwindOrder_Details
End Class

'<remarks/>
Public Class NorthwindCustomers
    
    '<remarks/>
    Public CustomerID As String
    
    '<remarks/>
    Public CompanyName As String
    
    '<remarks/>
    Public ContactName As String
    
    '<remarks/>
    Public ContactTitle As String
    
    '<remarks/>
    Public Address As String
    
    '<remarks/>
    Public City As String
    
    '<remarks/>
    Public [Region] As String
    
    '<remarks/>
    Public PostalCode As String
    
    '<remarks/>
    Public Country As String
    
    '<remarks/>
    Public Phone As String
    
    '<remarks/>
    Public Fax As String
End Class

'<remarks/>
Public Class NorthwindOrder_Details
    
    '<remarks/>
    Public OrderID As Integer
    
    '<remarks/>
    Public ProductID As Integer
    
    '<remarks/>
    Public UnitPrice As Decimal
    
    '<remarks/>
    Public Quantity As Short
    
    '<remarks/>
    Public Discount As Decimal
End Class

'<remarks/>
Public Class NorthwindOrders
    
    '<remarks/>
    Public OrderID As Integer
    
    '<remarks/>
    Public CustomerID As String
    
    '<remarks/>
    Public EmployeeID As Integer
    
    '<remarks/>
    Public OrderDate As Date
    
    '<remarks/>
    Public RequiredDate As Date
    
    '<remarks/>
    Public ShippedDate As Date
    
    '<remarks/>
    <System.Xml.Serialization.XmlIgnoreAttribute()>  _
    Public ShippedDateSpecified As Boolean
    
    '<remarks/>
    Public ShipVia As Integer
    
    '<remarks/>
    Public Freight As Decimal
    
    '<remarks/>
    Public ShipName As String
    
    '<remarks/>
    Public ShipAddress As String
    
    '<remarks/>
    Public ShipCity As String
    
    '<remarks/>
    Public ShipRegion As String
    
    '<remarks/>
    Public ShipPostalCode As String
    
    '<remarks/>
    Public ShipCountry As String
End Class

⌨️ 快捷键说明

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