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.
40 lines
872 B
40 lines
872 B
1 month ago
|
import 'package:huixiang/data/data_type.dart';
|
||
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'upload_result.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class UploadResult {
|
||
|
UploadResult();
|
||
|
String? id;
|
||
|
String? createTime;
|
||
|
String? createUser;
|
||
|
String? updateTime;
|
||
|
String? updateUser;
|
||
|
DataType? dataType;
|
||
|
String? submittedFileName;
|
||
|
String? treePath;
|
||
|
int? grade;
|
||
|
bool? isDelete;
|
||
|
String? folderId;
|
||
|
String? url;
|
||
|
String? size;
|
||
|
String? folderName;
|
||
|
dynamic group;
|
||
|
String? path;
|
||
|
String? relativePath;
|
||
|
dynamic fileMd5;
|
||
|
String? contextType;
|
||
|
String? filename;
|
||
|
String? ext;
|
||
|
String? icon;
|
||
|
String? createMonth;
|
||
|
String? createWeek;
|
||
|
String? createDay;
|
||
|
|
||
|
factory UploadResult.fromJson(Map<String, dynamic> json) =>
|
||
|
_$UploadResultFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$UploadResultToJson(this);
|
||
|
}
|