import 'dart:convert'; /// 空料箱请求类 class EmptyVehicleInReq { String? vehicleNo; EmptyVehicleInReq({this.vehicleNo}); String toJsonString() { Map data = {}; data["vehicleNo"] = vehicleNo; return jsonEncode(data); } }