| 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_patroluser | 
|  *  | 
|  * @author ard | 
|  * @date 2023-08-04 | 
|  */ | 
| public class ArdAppPatroluser extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** 主键 */ | 
|     private String id; | 
|   | 
|     /** 巡检主键 */ | 
|     @Excel(name = "巡检主键") | 
|     private String patrolplanId; | 
|   | 
|     /** app单兵端用户主键 */ | 
|     @Excel(name = "app单兵端用户主键") | 
|     private String appUserId; | 
|   | 
|     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 setAppUserId(String appUserId)  | 
|     { | 
|         this.appUserId = appUserId; | 
|     } | 
|   | 
|     public String getAppUserId()  | 
|     { | 
|         return appUserId; | 
|     } | 
|   | 
|     @Override | 
|     public String toString() { | 
|         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) | 
|             .append("id", getId()) | 
|             .append("patrolplanId", getPatrolplanId()) | 
|             .append("appUserId", getAppUserId()) | 
|             .toString(); | 
|     } | 
| } |