package com.dy.pipIrrGlobal.voOp; 
 | 
  
 | 
import com.dy.common.po.BaseEntity; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * @author :WuZeYu 
 | 
 * @Date :2024/8/1  20:07 
 | 
 * @LastEditTime :2024/8/1  20:07 
 | 
 * @Description 
 | 
 */ 
 | 
@Data 
 | 
public class VofeedbackReply implements BaseEntity { 
 | 
    private static final long serialVersionUID = 202408012009001L; 
 | 
    /** 
 | 
     * 主键id 
 | 
     */ 
 | 
    private String id; 
 | 
    /** 
 | 
     * 反馈编号 
 | 
     */ 
 | 
    private String feedbackId; 
 | 
  
 | 
    /** 
 | 
     * 回复内容 
 | 
     */ 
 | 
    private String replyContent; 
 | 
  
 | 
    /** 
 | 
     * 回复时间 
 | 
     */ 
 | 
    private Date replyTime; 
 | 
  
 | 
    /** 
 | 
     * 回复人ID 
 | 
     */ 
 | 
    private String replierId; 
 | 
} 
 |