您好,我希望能够定义如下内容:
<Infos>
<Mileage>9987
<UseIn>POS_DISPLAY</UseIn>
<UseIn>READER_DISPLAY</UseIn>
</Mileage>
</Infos>
Mileage
是混合型。9987
是它的值,UseIn
是一些属性。问题是我找不到定义Mileage
内容限制的方法。
有什么方法可以定义上面的结构,而不回退到:
<Infos>
<Mileage>
<MileageValue>9987</MileageValue>
<UseIn>POS_DISPLAY</UseIn>
<UseIn>READER_DISPLAY</UseIn>
</Mileage>
</Infos>