import 'package:ef/ef.dart'; import 'package:json_annotation/json_annotation.dart'; part 'img_preview_controller.g.dart'; @JsonSerializable() class ImgPreviewModel { //版本id String? url; //图片地址 ImgPreviewModel(); static ImgPreviewModel fromJson(Map json) => _$ImgPreviewModelFromJson(json); Map toJson() => _$ImgPreviewModelToJson(this); } class ImgPreviewController extends GetControllerEx { ImgPreviewController() { attr = GetModel(ImgPreviewModel()).obs; } }