ard-work/src/main/java/com/ruoyi/app/patrolplan/domain/ArdAppPatrolplan.java
@@ -79,6 +79,8 @@ private String delTime; private String son; @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) ard-work/src/main/java/com/ruoyi/app/patrolplan/service/impl/ArdAppPatrolpointRecordServiceImpl.java
@@ -71,7 +71,8 @@ .eq("user_id",ardAppPatrolpointRecord.getUserId()); List<ArdAppPatrolpointRecord> recordList = ardAppPatrolpointRecordMapper.selectList(recordQueryWrapper); ardAppPatrolpointRecord.setPointsNum(recordList.size()+1); int num = ardAppPatrolpointRecordMapper.insert(ardAppPatrolpointRecord); // int num = ardAppPatrolpointRecordMapper.insert(ardAppPatrolpointRecord); int num = ardAppPatrolpointRecordMapper.insertArdAppPatrolpointRecord(ardAppPatrolpointRecord); List<String> list = ardAppPatrolpointRecord.getImg(); for (int i = 0; i < list.size(); i++) { ArdAppPatrolpointRecordImg recordImg = new ArdAppPatrolpointRecordImg(); ard-work/src/main/resources/mapper/app/ArdAppPatrolpointRecordMapper.xml
@@ -44,6 +44,12 @@ <if test="userId != null">user_id,</if> <if test="recordTime != null">record_time,</if> <if test="appPatrolpointsId != null">app_patrolpoints_id,</if> <if test="planId != null">plan_id,</if> <if test="planName != null">plan_name,</if> <if test="recordImg != null">record_img,</if> <if test="userName != null">user_name,</if> <if test="appPatrolpointsName != null">app_patrolpoints_name,</if> <if test="pointsNum != null">points_num,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="id != null">#{id},</if> @@ -53,7 +59,13 @@ <if test="userId != null">#{userId},</if> <if test="recordTime != null">#{recordTime},</if> <if test="appPatrolpointsId != null">#{appPatrolpointsId},</if> </trim> <if test="planId != null">#{planId},</if> <if test="planName != null">#{planName},</if> <if test="recordImg != null">#{recordImg},</if> <if test="userName != null">#{userName},</if> <if test="appPatrolpointsName != null">#{appPatrolpointsName},</if> <if test="pointsNum != null">#{pointsNum},</if> </trim> </insert> <update id="updateArdAppPatrolpointRecord" parameterType="ArdAppPatrolpointRecord">