42 lines
939 B
Java
42 lines
939 B
Java
package tqq9.lc123.cloud.app.api.model;
|
|
|
|
import kd.bos.openapi.common.custom.annotation.ApiModel;
|
|
import kd.bos.openapi.common.custom.annotation.ApiParam;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 动态表单插件
|
|
*/
|
|
public class WMSInvoiceQueryModel implements Serializable {
|
|
|
|
|
|
@ApiParam("返回结果")
|
|
private List<WMSInvoiceQueryModel.ResultBean> result;
|
|
|
|
public List<WMSInvoiceQueryModel.ResultBean> getResult() {
|
|
return result;
|
|
}
|
|
|
|
public void setResult(List<WMSInvoiceQueryModel.ResultBean> result) {
|
|
this.result = result;
|
|
}
|
|
|
|
|
|
@ApiModel
|
|
public static class ResultBean implements Serializable {
|
|
@ApiParam("发票文件地址")
|
|
private String InvoiceUrl;
|
|
|
|
public String getInvoiceUrl() {
|
|
return InvoiceUrl;
|
|
}
|
|
|
|
public void setInvoiceUrl(String invoiceUrl) {
|
|
InvoiceUrl = invoiceUrl;
|
|
}
|
|
}
|
|
|
|
|
|
} |