后台修试管理代码提交

This commit is contained in:
1539530615@qq.com 2024-01-12 17:13:55 +08:00
parent 1115686d36
commit 8310504c52
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="insertTmTaskAgreement" parameterType="com.bonus.sgzb.material.domain.TmTaskAgreement" useGeneratedKeys="true" keyProperty="taskId"> <insert id="insertTmTaskAgreement" parameterType="com.bonus.sgzb.material.domain.TmTaskAgreement" useGeneratedKeys="true" keyProperty="taskId">
insert into tm_task_agreement insert into tm_task_agreement
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="task_id != null">task_id,</if> <if test="taskId != null">task_id,</if>
<if test="agreementId != null">agreement_id,</if> <if test="agreementId != null">agreement_id,</if>
<if test="createBy != null">create_by,</if> <if test="createBy != null">create_by,</if>
create_time, create_time,
@ -45,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="companyId != null">company_id,</if> <if test="companyId != null">company_id,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="task_id != null">#{taskId},</if> <if test="taskId != null">#{taskId},</if>
<if test="agreementId != null">#{agreementId},</if> <if test="agreementId != null">#{agreementId},</if>
<if test="createBy != null">#{createBy},</if> <if test="createBy != null">#{createBy},</if>
now(), now(),