All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ealenxie.goodcang.assistant.AppealPayload Maven / Gradle / Ivy

The newest version!
package io.github.ealenxie.goodcang.assistant;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

import java.util.List;

/**
 * @author EalenXie created on 2023/6/27 10:22
 */
@Getter
@Setter
public class AppealPayload {
    /**
     * 复查时间
     */
    @JsonProperty("add_time")
    private String addTime;
    /**
     * 申诉附件
     */
    @JsonProperty("attachment_file_list")
    private List attachmentFileList;
    /**
     * 申诉需求
     */
    @JsonProperty("io_desc")
    private String ioDesc;
    /**
     * 回复结果
     */
    @JsonProperty("handle_info")
    private HandleInfo handleInfo;
    /**
     * 回复时间
     */
    @JsonProperty("reply_time")
    private String replyTime;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy