我们在XML中有字段,该字段将与时间戳一起日期。
ex:2016-12-22 10:36:46
在我们的模式中,我们将该元素定义为
<xs:element name="REJECTTIME" minOccurs="0" type="xs:datetime"/>
,但我们遇到的致命错误如下
元素具有type = {http://www.w3.org/2001/xmlschema} dateTime,哪个 不存在。
应该是
type="xs:dateTime"
^
而不是
type="xs:datetime"