1234567891011 |
- class FSelectModel {
- FSelectModel({required this.name, required this.code});
- final String name;
- final String code;
- }
- class FMutiSelectModel {
- FMutiSelectModel({required this.name, required this.code});
- final String name;
- final String code;
- }
|