toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['id'] = id;
map['createBy'] = createBy;
map['createTime'] = createTime;
map['updateTime'] = updateTime;
map['updateBy'] = updateBy;
map['deletedFlag'] = deletedFlag;
map['bucketName'] = bucketName;
map['file'] = file;
map['files'] = files;
map['tenantId'] = tenantId;
map['busiId'] = busiId;
map['busiType'] = busiType;
map['fileName'] = fileName;
map['fileExt'] = fileExt;
map['filePath'] = filePath;
map['fileUrl'] = fileUrl;
map['fileSize'] = fileSize;
map['remark'] = remark;
return map;
}