我有以下架构元素,我想向它添加一个属性。
<xsd:ComplexType>
<xsd:sequence>
<xsd:element name="Product" maxOccurs="1" minOccurs="0" >
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="100" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:ComplexType>
现在生成的 XML 如下所示:
<Product>This is the Product Translation for 001</Product>
我希望生成的 XML 看起来像:
<Product code="001">This is the Product Translation for 001</Product>