| package com.ruoyi.app.tasktext.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_text | 
|  *  | 
|  * @author ard | 
|  * @date 2023-07-22 | 
|  */ | 
| public class ArdAppTaskText extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** 用户ID */ | 
|     @Excel(name = "用户ID") | 
|     private String userId; | 
|   | 
|     /** app任务描述 */ | 
|     @Excel(name = "app任务描述") | 
|     private String text; | 
|   | 
|     /** ID */ | 
|     private String id; | 
|   | 
|     public void setUserId(String userId)  | 
|     { | 
|         this.userId = userId; | 
|     } | 
|   | 
|     public String getUserId()  | 
|     { | 
|         return userId; | 
|     } | 
|     public void setText(String text)  | 
|     { | 
|         this.text = text; | 
|     } | 
|   | 
|     public String getText()  | 
|     { | 
|         return text; | 
|     } | 
|     public void setId(String id)  | 
|     { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getId()  | 
|     { | 
|         return id; | 
|     } | 
|   | 
|     @Override | 
|     public String toString() { | 
|         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) | 
|             .append("userId", getUserId()) | 
|             .append("text", getText()) | 
|             .append("id", getId()) | 
|             .toString(); | 
|     } | 
| } |