| package com.ruoyi.app.patrolplan.domain; | 
|   | 
| 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; | 
|   | 
| /** | 
|  * app巡检计划记录图片对象 ard_app_patrolpoint_record_img | 
|  *  | 
|  * @author ard | 
|  * @date 2023-08-02 | 
|  */ | 
| public class ArdAppPatrolpointRecordImg extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** 主键 */ | 
|     private String id; | 
|   | 
|     /** 巡检记录主键 */ | 
|     @Excel(name = "巡检记录主键") | 
|     private String appPatrolponitRecordId; | 
|   | 
|     /** 巡检图片 */ | 
|     @Excel(name = "巡检图片") | 
|     private String img; | 
|   | 
|     public void setId(String id)  | 
|     { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getId()  | 
|     { | 
|         return id; | 
|     } | 
|     public void setAppPatrolponitRecordId(String appPatrolponitRecordId)  | 
|     { | 
|         this.appPatrolponitRecordId = appPatrolponitRecordId; | 
|     } | 
|   | 
|     public String getAppPatrolponitRecordId()  | 
|     { | 
|         return appPatrolponitRecordId; | 
|     } | 
|     public void setImg(String img)  | 
|     { | 
|         this.img = img; | 
|     } | 
|   | 
|     public String getImg()  | 
|     { | 
|         return img; | 
|     } | 
|   | 
|     @Override | 
|     public String toString() { | 
|         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) | 
|             .append("id", getId()) | 
|             .append("appPatrolponitRecordId", getAppPatrolponitRecordId()) | 
|             .append("img", getImg()) | 
|             .toString(); | 
|     } | 
| } |