Commit e250ca9f authored by Xinghaoxiang's avatar Xinghaoxiang

编写Readme文件

parent 82628c48
...@@ -16,6 +16,9 @@ ...@@ -16,6 +16,9 @@
- speechRecognition 语音识别 - speechRecognition 语音识别
- ocrRecognition OCR识别 - ocrRecognition OCR识别
- documentScan 文档扫描 - documentScan 文档扫描
- shareFolder 共享文件夹
- myselfNetDisk 个人网盘
- documentManager 文档管理
#### Weex端调用方法。 #### Weex端调用方法。
......
package com.bril.webfilemodule;
import java.util.List;
/**
* Created by Xinghx on 2018/6/14 0014.
*/
public class Test {
private List<NotificationBean> notification;
public List<NotificationBean> getNotification() {
return notification;
}
public void setNotification(List<NotificationBean> notification) {
this.notification = notification;
}
public static class NotificationBean {
/**
* file_path : notice/1528883309634.txt
* file_name : readme.txt
*/
private String file_path;
private String file_name;
public String getFile_path() {
return file_path;
}
public void setFile_path(String file_path) {
this.file_path = file_path;
}
public String getFile_name() {
return file_name;
}
public void setFile_name(String file_name) {
this.file_name = file_name;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment