zouxuan 5 лет назад
Родитель
Сommit
ccf5d47efa

+ 0 - 1
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/StudentRepair.java

@@ -5,7 +5,6 @@ import java.util.Date;
 
 public class StudentRepair {
     private Integer id;
-
     /**
     * 维修单号
     */

+ 3 - 4
mec-biz/src/main/resources/config/mybatis/StudentRepairMapper.xml

@@ -55,7 +55,6 @@
         #{updateTime,jdbcType=TIMESTAMP},#{repairStatus})
     </insert>
     <update id="update" parameterType="com.ym.mec.biz.dal.entity.StudentRepair">
-        <!--@mbg.generated-->
         UPDATE student_repair
         <set>
             <if test="transNo != null">
@@ -65,7 +64,7 @@
                 repair_status_ = #{repairStatus},
             </if>
             <if test="organId != null">
-                organ_id_ = ##{organId},
+                organ_id_ = #{organId},
             </if>
             <if test="studentId != null">
                 student_id_ = #{studentId},
@@ -104,13 +103,13 @@
                 finish_time_ = #{finishTime},
             </if>
             <if test="sendType != null">
-                send_type_ #{sendType},
+                send_type_ = #{sendType},
             </if>
             <if test="contactName != null">
                 contact_name_ = #{contactName},
             </if>
             <if test="contactMobile != null">
-                contact_mobile_ = #{contactName},
+                contact_mobile_ = #{contactMobile},
             </if>
             <if test="address != null">
                 address_ = #{address},