package com.fzzy.push.nx2023.dto; import lombok.Data; import java.io.Serializable; /** * 上报反馈 * @author czt * @date 2023/08/17 */ @Data public class Nx2023RespDto implements Serializable { /** * */ private static final long serialVersionUID = -6714158228489303453L; private int code ; private String result; public Nx2023RespDto() { } public Nx2023RespDto(int code, String result) { this.code = code; this.result = result; } }