resultMap 总是报告 "must match constructor, id, result, asssociation, collection, discriminator"

resultMap alway report "must match constructor, id, result, asssociation, collection, discriminator"

我的mybatis mapper文件总是报如下错误信息:

The content of element type "resultMap" must match "(constructor?,id*,result*,association*,collection*,discriminator?)".

这是我的 resultMap 配置:

<resultMap type="com.sp.sysmanage.domain.UserInfoDO" id="user">
    <result column="USER_ID" property="userID"/>  
    <result column="USER_USERNAME" property="userName"/>
    <result column="USER_PASSWORD" property="password"/>
    <result column="USER_FIRST_LOGIN" property="firstLogin"/>
    <result column="USER_LAST_LOGIN_DATE" property="lastLoginDate"/>
    <reulst column="USER_STATUS" property="status"/>
</resultMap>

谁能帮忙看看我的resultMap配置有什么详细的错误?

有错别字:<reulst>结尾,应该是<result>