像“多选”这样的XML数据结构

时间:2009-05-27 14:00:47

标签: xml schema xsd

我想知道如何使用XML和Schema轻松描述多选组合框。 目前我使用这个定义:

<xs:element name="RefPartner">
    <xs:complexType>
        <xs:attribute name="isSalesRepresentative" type="xs:boolean"/>
        <xs:attribute name="isPolicyResponsible" type="xs:boolean"/>
        <xs:attribute name="isPolicyCorrespondanceResponcible" type="xs:boolean"/>
        <xs:attribute name="isAssetManager" type="xs:boolean"/>
        <xs:attribute name="isContactPerson" type="xs:boolean"/>
        <xs:attribute name="isLegalRepresentative" type="xs:boolean"/>
    </xs:complexType>

但这个解决方案并不好。 请写下您的想法,如何做得更好。感谢。

0 个答案:

没有答案