| 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 | 
|  *  | 
|  * @author ard | 
|  * @date 2023-08-02 | 
|  */ | 
| public class ArdAppPatrolpoint extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** 主键 */ | 
|     private String id; | 
|   | 
|     /** 巡检主键 */ | 
|     @Excel(name = "巡检主键") | 
|     private String patrolplanId; | 
|   | 
|     /** 兴趣点主键 */ | 
|     @Excel(name = "兴趣点主键") | 
|     private String alarmpointsId; | 
|   | 
|     /** 类型 */ | 
|     @Excel(name = "类型") | 
|     private String type; | 
|   | 
|     public void setId(String id)  | 
|     { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getId()  | 
|     { | 
|         return id; | 
|     } | 
|     public void setPatrolplanId(String patrolplanId)  | 
|     { | 
|         this.patrolplanId = patrolplanId; | 
|     } | 
|   | 
|     public String getPatrolplanId()  | 
|     { | 
|         return patrolplanId; | 
|     } | 
|     public void setAlarmpointsId(String alarmpointsId)  | 
|     { | 
|         this.alarmpointsId = alarmpointsId; | 
|     } | 
|   | 
|     public String getAlarmpointsId()  | 
|     { | 
|         return alarmpointsId; | 
|     } | 
|     public void setType(String type)  | 
|     { | 
|         this.type = type; | 
|     } | 
|   | 
|     public String getType()  | 
|     { | 
|         return type; | 
|     } | 
|   | 
|     @Override | 
|     public String toString() { | 
|         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) | 
|             .append("id", getId()) | 
|             .append("patrolplanId", getPatrolplanId()) | 
|             .append("alarmpointsId", getAlarmpointsId()) | 
|             .append("type", getType()) | 
|             .toString(); | 
|     } | 
| } |