| package com.dy.pipIrrGlobal.voOp; | 
|   | 
| import com.alibaba.fastjson2.annotation.JSONField; | 
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
| import com.dy.common.po.BaseEntity; | 
| import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2024-11-28 14:39 | 
|  * @LastEditTime 2024-11-28 14:39 | 
|  * @Description 任务类型视图对象 | 
|  */ | 
|   | 
| @Data | 
| @JsonPropertyOrder({"taskTypeId", "taskType"}) | 
| public class VoTaskType implements BaseEntity { | 
|     public static final long serialVersionUID = 202411281440001L; | 
|   | 
|     /** | 
|      * 任务类型ID | 
|      */ | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     private Long taskTypeId; | 
|   | 
|     /** | 
|      * 任务类型 | 
|      */ | 
|     private String taskType; | 
| } |