|  |  | 
 |  |  | package com.ruoyi.app.patrolplan.domain; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import lombok.Data; | 
 |  |  | import org.apache.commons.lang3.builder.ToStringBuilder; | 
 |  |  | import org.apache.commons.lang3.builder.ToStringStyle; | 
 |  |  | import com.ruoyi.common.annotation.Excel; | 
 |  |  | import com.ruoyi.common.core.domain.BaseEntity; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * app巡检计划记录对象 ard_app_patrolpoint_record | 
 |  |  | 
 |  |  |  * @author ard | 
 |  |  |  * @date 2023-08-02 | 
 |  |  |  */ | 
 |  |  | public class ArdAppPatrolpointRecord extends BaseEntity | 
 |  |  | @Data | 
 |  |  | public class ArdAppPatrolpointRecord | 
 |  |  | { | 
 |  |  |     private static final long serialVersionUID = 1L; | 
 |  |  |  | 
 |  |  |     /** 主键 */ | 
 |  |  |     @TableField("id") | 
 |  |  |     private String id; | 
 |  |  |  | 
 |  |  |     /** 经度 */ | 
 |  |  | 
 |  |  |     @Excel(name = "巡检点主键") | 
 |  |  |     private String appPatrolpointsId; | 
 |  |  |  | 
 |  |  |     public void setId(String id)  | 
 |  |  |     { | 
 |  |  |         this.id = id; | 
 |  |  |     private String appPatrolpointsName; | 
 |  |  |  | 
 |  |  |     private String planId; | 
 |  |  |  | 
 |  |  |     private String planName; | 
 |  |  |  | 
 |  |  |     private String userName; | 
 |  |  |  | 
 |  |  |     private String remark; | 
 |  |  |  | 
 |  |  |     private String recordImg; | 
 |  |  |  | 
 |  |  |     private Integer pointsNum; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String planUserName; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private List<String> img; | 
 |  |  |  | 
 |  |  |     /** 删除标记 */ | 
 |  |  |     @Excel(name = "删除标记") | 
 |  |  |     private Integer del; | 
 |  |  |  | 
 |  |  |     public Integer getDel() { | 
 |  |  |         return del; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getId()  | 
 |  |  |     { | 
 |  |  |         return id; | 
 |  |  |     } | 
 |  |  |     public void setLongitude(String longitude)  | 
 |  |  |     { | 
 |  |  |         this.longitude = longitude; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getLongitude()  | 
 |  |  |     { | 
 |  |  |         return longitude; | 
 |  |  |     } | 
 |  |  |     public void setLatitude(String latitude)  | 
 |  |  |     { | 
 |  |  |         this.latitude = latitude; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getLatitude()  | 
 |  |  |     { | 
 |  |  |         return latitude; | 
 |  |  |     } | 
 |  |  |     public void setUserId(String userId)  | 
 |  |  |     { | 
 |  |  |         this.userId = userId; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getUserId()  | 
 |  |  |     { | 
 |  |  |         return userId; | 
 |  |  |     } | 
 |  |  |     public void setRecordTime(String recordTime)  | 
 |  |  |     { | 
 |  |  |         this.recordTime = recordTime; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getRecordTime()  | 
 |  |  |     { | 
 |  |  |         return recordTime; | 
 |  |  |     } | 
 |  |  |     public void setAppPatrolpointsId(String appPatrolpointsId)  | 
 |  |  |     { | 
 |  |  |         this.appPatrolpointsId = appPatrolpointsId; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getAppPatrolpointsId()  | 
 |  |  |     { | 
 |  |  |         return appPatrolpointsId; | 
 |  |  |     public void setDel(Integer del) { | 
 |  |  |         this.del = del; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @Override |