nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for propert

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for propert named 'ITEM_ID' in 'class java.lang.String'

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for propert

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for propert

Xml映射文件配置(部分)

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for propert

<insert id="insertBatch" parameterType="java.util.List" flushCache="true">
   <![CDATA[ INSERT INTO OA_PM_PERSON_INPUT_ITEM(
    ITEM_ID,
    INPUT_ID,
    INPUT_STATUS,
    INPUT_TIME,
    PROJECT_ID
)
  ]]>
   <foreach collection="list" item="item" index="index" separator="UNION ALL">
      (SELECT
      (SELECT TO_CHAR(COUNT(item_id) + 1) FROM OA_PM_PERSON_INPUT_ITEM),
      (SELECT TO_CHAR(COUNT(input_id) + 1) FROM OA_PM_PERSON_INPUT),
      #{item.input_status,jdbcType=VARCHAR},
      #{item.input_time,jdbcType=DATE},
      #{item.project_id,jdbcType=VARCHAR}
      FROM DUAL)
   </foreach>
</insert>

这是Mybatis Xml映射文件配置,映射文件与前台的保持一致,包括大小写

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for propert