package com.tievd.jyz.mqtt.command; /** * 命令接口 * @author Wang * */ public interface Command { /** * 初始化 * @return */ int init(); /** * 执行 * @return */ int execute(); }