fastCate.dart 351 B

12345678910111213141516
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'fastCate.g.dart';
  3. @JsonSerializable()
  4. class FastCate {
  5. FastCate();
  6. num id;
  7. String cate_name;
  8. num pid;
  9. String pic;
  10. factory FastCate.fromJson(Map<String,dynamic> json) => _$FastCateFromJson(json);
  11. Map<String, dynamic> toJson() => _$FastCateToJson(this);
  12. }