This commit is contained in:
2022-10-09 19:14:15 +08:00
parent 594819cf73
commit 6afca9aa56

View File

@@ -21,5 +21,13 @@ public class EmptyTubeServiceImpl implements EmptyTubeService {
return result;
}
@Override
public JSONObject confirm(JSONObject whereJson) {
JSONObject result = new JSONObject();
result.put("code", "1");
result.put("desc", "查询成功");
return result;
}
}