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.
24 lines
535 B
24 lines
535 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'category_select.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class CategorySelect { |
|
String? id = ''; |
|
String? createTime = ''; |
|
String? createUser = ''; |
|
String? updateTime = ''; |
|
String? updateUser = ''; |
|
String? name = ''; |
|
bool? isTop = false; |
|
int? sort = 0; |
|
int? isDelete = 0; |
|
|
|
CategorySelect(); |
|
|
|
factory CategorySelect.fromJson(Map<String, dynamic> json) => _$CategorySelectFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$CategorySelectToJson(this); |
|
|
|
|
|
} |