| package com.ruoyi.app.task.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_task_pic | 
|  *  | 
|  * @author ard | 
|  * @date 2023-07-22 | 
|  */ | 
| public class ArdAppTaskPic extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** ID */ | 
|     private String id; | 
|   | 
|     /** app任务ID */ | 
|     @Excel(name = "app任务ID") | 
|     private String taskId; | 
|   | 
|     /** app任务图片url */ | 
|     @Excel(name = "app任务图片url") | 
|     private String picUrl; | 
|   | 
|     public void setId(String id)  | 
|     { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getId()  | 
|     { | 
|         return id; | 
|     } | 
|     public void setTaskId(String taskId)  | 
|     { | 
|         this.taskId = taskId; | 
|     } | 
|   | 
|     public String getTaskId()  | 
|     { | 
|         return taskId; | 
|     } | 
|     public void setPicUrl(String picUrl)  | 
|     { | 
|         this.picUrl = picUrl; | 
|     } | 
|   | 
|     public String getPicUrl()  | 
|     { | 
|         return picUrl; | 
|     } | 
|   | 
|     @Override | 
|     public String toString() { | 
|         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) | 
|             .append("id", getId()) | 
|             .append("taskId", getTaskId()) | 
|             .append("picUrl", getPicUrl()) | 
|             .toString(); | 
|     } | 
| } |