package com.dji.sdk.mqtt.drc; import com.dji.sdk.mqtt.services.ServicesErrorCode; /** * @author wmm * @version 0.1 * @date 2024/6/18 */ public class DrcReplyData { private ServicesErrorCode result; private T output; public DrcReplyData() { } @Override public String toString() { return "DrcUpData{" + "result=" + result + ", output=" + output + '}'; } public ServicesErrorCode getResult() { return result; } public DrcReplyData setResult(ServicesErrorCode result) { this.result = result; return this; } public T getOutput() { return output; } public DrcReplyData setOutput(T output) { this.output = output; return this; } }