初始化项目

This commit is contained in:
wyf
2025-04-11 08:47:46 +08:00
parent e0e1055d65
commit 9396f18d09
199 changed files with 6516 additions and 216 deletions

View File

@@ -0,0 +1,19 @@
import 'package:json_annotation/json_annotation.dart';
part 'experience_store.g.dart';
//体验店
@JsonSerializable()
class ExperienceStoreModel {
String? name; //设备名称
String? phone; //店铺电话
String? address; //店铺地址
ExperienceStoreModel();
static ExperienceStoreModel fromJson(Map<String, dynamic> json) =>
_$ExperienceStoreModelFromJson(json);
Map<String, dynamic> toJson() => _$ExperienceStoreModelToJson(this);
}