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.
 
 

32 lines
684 B

/*
* Copyright (C), 2015-2019
* FileName: JSONExport
* Author: xx
* Date: 2019/8/29 16:52
* Description: JSONExport
* History:
* <author> <time> <version> <desc>
*/
package com.fr.plugin.tabledataservice.toolbar;
import com.fr.report.fun.impl.AbstractExportOperateProvider;
import com.fr.web.core.reserve.Operate;
/**
* 〈Function Description〉<br>
* 〈JSONExport〉
*
* @author xx
* @since 1.0.0
*/
public class JSONExport extends AbstractExportOperateProvider {
@Override
public Operate operate() {
return new JSONExportOperate();
}
@Override
public String markType() {
return "json";
}
}