Commit 40fdd28c authored by yanzg's avatar yanzg

下载视频

parent dcf09242
......@@ -14,6 +14,11 @@ public class YzgFileCallbackReqVo extends BaseVo {
*/
@ApiModelProperty(notes = "文件Id,用于后续文件下载", position = 10)
private String fileId;
/**
* 公司Id,用于判断每个公司同一个人不能生成多次文件,同一个公司Id需要配置每日最大运行次数,默认每日为50
*/
@ApiModelProperty(notes = "公司Id,用于后续文件下载,同一个公司Id需要配置每日最大运行次数,默认为50", position = 20)
private String companyId;
/**
* 功能点关键字,同一个callbackMQ需要设置最大执行次数,回调MQ
*/
......@@ -33,8 +38,9 @@ public class YzgFileCallbackReqVo extends BaseVo {
public YzgFileCallbackReqVo() {
}
public YzgFileCallbackReqVo(String fileId, String callbackMQ, String callbackParameter, String fileServerPath) {
public YzgFileCallbackReqVo(String fileId,String companyId, String callbackMQ, String callbackParameter, String fileServerPath) {
this.fileId = fileId;
this.companyId = companyId;
this.callbackMQ = callbackMQ;
this.callbackParameter = callbackParameter;
this.fileServerPath = fileServerPath;
......@@ -48,6 +54,14 @@ public class YzgFileCallbackReqVo extends BaseVo {
this.fileId = fileId;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getCallbackMQ() {
return callbackMQ;
}
......
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