mybatis parameterType="实体类” insert

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis parameterType="实体类” insert相关的知识,希望对你有一定的参考价值。

Mapper:
/**
*添加spc 到数据库
*/
void addSpc (@Param("spc") Spc spc);

xml:
        如果没有mapper 中的@Param("spc"),就不能在xml 中使用#{spc.edcId}
        id 自增 使用null , 进行占位

<insert id="addSpc" parameterType="com.umuw.spc.Spc"   useGeneratedKeys="true"  >
INSERT INTO t_edc_spec_rule VALUES (null,#{spc.edcId},#{spc.spcRuleName},#{spc.oocSize},#{spc.oocReason},#{spc.maxIntevalLimitTime},#{spc.isEnable},#{spc.description},#{spc.dataId});
</insert>
 












以上是关于mybatis parameterType="实体类” insert的主要内容,如果未能解决你的问题,请参考以下文章

mybati之parameterType传递多个参数

Mybatis传入参数parameterType的使用方法

Java--MyBatis传入参数parameterType

Mybatis传入参数parameterType的使用方法

mybatis--parametertype的参数传递

mybatis传入参数类型parameterType详解