пре 1 година
родитељ
комит
f7cb9ae8c0

+ 1 - 0
platform-dao/src/main/java/com/platform/dao/vo/repair/RepairApplicationFormVO.java

@@ -25,6 +25,7 @@ import java.util.List;
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = true)
 public class RepairApplicationFormVO extends BaseVO implements Serializable {
+    private String verifyRepairUserName;
 
     /**
      * 日历时间

+ 1 - 1
platform-dao/src/main/resources/mapper/repair/RepairApplicationFormMapper.xml

@@ -621,7 +621,7 @@
 
     <select id="getRepairList" parameterType="com.platform.dao.dto.repair.RepairApplicationFormDTO"
             resultType="com.platform.dao.vo.repair.RepairApplicationFormVO">
-        select form.*   from t_repair_application_form form
+        select form.*,user.username as verifyRepairUserName from t_repair_application_form form left join t_sys_user user on user.user_id=form.verify_repair_user_id
         where form.status =#{status}
         <if test="allUserId!=null and allUserId!=''">
             and (form.user_id = #{allUserId} or