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.
29 lines
693 B
29 lines
693 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'ticket_item.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class TicketItems {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? ticketId = '';
|
||
|
String? relationType = '';
|
||
|
String? relationId = '';
|
||
|
String? name = '';
|
||
|
String? showImage = '';
|
||
|
int? state = 0;
|
||
|
String? finishTime = '';
|
||
|
int? isDelete = 0;
|
||
|
String? tenantCode = '';
|
||
|
int? canWipedNumber = 0;
|
||
|
|
||
|
TicketItems();
|
||
|
|
||
|
factory TicketItems.fromJson(Map<String, dynamic> json) => _$TicketItemsFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$TicketItemsToJson(this);
|
||
|
|
||
|
}
|