XuGongTeJi_flutter/lib/api_client/dto/empty_vehicle_in_request.dart

18 lines
287 B
Dart
Raw Normal View History

2025-02-19 18:52:05 +08:00
import 'dart:convert';
/// 空料箱请求类
class EmptyVehicleInReq {
String? vehicleNo;
EmptyVehicleInReq({this.vehicleNo});
String toJsonString() {
Map<String, String?> data = <String, String?>{};
data["vehicleNo"] = vehicleNo;
return jsonEncode(data);
}
}