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.
37 lines
679 B
37 lines
679 B
5 years ago
|
const AV = require("../lib/av-live-query-weapp-min")
|
||
|
|
||
|
class File extends AV.Object{
|
||
|
get url(){
|
||
|
return this.get("url");
|
||
|
}
|
||
|
set url(value){
|
||
|
this.set("url", value);
|
||
|
}
|
||
|
get fileid(){
|
||
|
return this.get("fileid");
|
||
|
}
|
||
|
set fileid(value){
|
||
|
this.set("fileid", value);
|
||
|
}
|
||
|
get class(){
|
||
|
return this.get("class");
|
||
|
}
|
||
|
set class(value){
|
||
|
this.set("class", value);
|
||
|
}
|
||
|
get filename(){
|
||
|
return this.get("filename");
|
||
|
}
|
||
|
set filename(value){
|
||
|
this.set("filename", value);
|
||
|
}
|
||
|
get uploader(){
|
||
|
return this.get("uploader");
|
||
|
}
|
||
|
set uploader(value){
|
||
|
this.set("uploader", value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
AV.Object.register(File, "File_");
|
||
|
module.exports = File;
|