You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
556 B
25 lines
556 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'goods_category.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class GoodsCategory {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? parentId = '';
|
||
|
String? name = '';
|
||
|
int? miniShow = 0;
|
||
|
int? sortOrder = 0;
|
||
|
int? isDelete = 0;
|
||
|
|
||
|
GoodsCategory();
|
||
|
|
||
|
factory GoodsCategory.fromJson(Map<String, dynamic> json) => _$GoodsCategoryFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$GoodsCategoryToJson(this);
|
||
|
|
||
|
|
||
|
}
|