listing 16-1.txt

来自「这是JAVA开发大全的源代码」· 文本 代码 · 共 19 行

TXT
19
字号
<?xml version="1.0"?>
<schema targetNamespace="http://mycompany.com/pricing/schemas"
       xmlns="http://www.w3.org/2000/10/XMLSchema">
    <element name="ProductPriceRequest">
        <complexType>
            <all>
                <element name="ProductID" type="string"/>
            </all>
        </complexType>
    </element>
    <element name="ProductPrice">
        <complexType>
            <all>
                <element name="UnitPrice" type="float"/>
            </all>
        </complexType>
    </element>
</schema>

⌨️ 快捷键说明

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