ODF/lib/bean/new_search_room_bean.dart
2025-09-21 22:07:13 +08:00

19 lines
526 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'new_search_room_bean.g.dart';
@JsonSerializable(explicitToJson: true)
class NewSearchRoomBean {
int? roomId;
String? roomName;
String? roomAddress;
String? remarks;
String? deptName;
NewSearchRoomBean(this.roomId,this.roomName, this.roomAddress, this.remarks, this.deptName);
factory NewSearchRoomBean.fromJson(Map<String, dynamic> json) => _$NewSearchRoomBeanFromJson(json);
Map<String, dynamic> toJson() => _$NewSearchRoomBeanToJson(this);
}