<Beans
xmlns="http://www.w3school.com.cn"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3school.com.cn student.xsd">
<Bean className="sfsdf" tableName="sfds" >
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
<col beanCol="sfdsf" tableCol="sdfdsf"/>
</Bean>
</Beans>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3school.com.cn"
xmlns="http://www.w3school.com.cn"
elementFormDefault="qualified">
<xs:element name="Beans">
<xs:complexType>
<xs:sequence>
<xs:element name="Bean" >
<xs:complexType >
<xs:sequence >
<xs:element name="col" maxOccurs="10" minOccurs="0">
<xs:complexType>
<xs:attribute name="tableCol"></xs:attribute>
<xs:attribute name="beanCol"></xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="tableName" type="xs:string"></xs:attribute>
<xs:attribute name="className" type="xs:string"></xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>