全新导出类型接口demo
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.
 
 

28 lines
627 B

package com.tptj.demo.hg.export.operate.provider;
import com.fanruan.api.util.StringKit;
import com.fr.general.RecordType;
/**
* @author 秃破天际
* @version 10.0
* Created by 秃破天际 on 2021-04-07
**/
public class JsonRecordType implements RecordType {
public static final JsonRecordType KEY = new JsonRecordType();
private JsonRecordType(){}
@Override
public short getTypeMark() {
return (short)20001;
}
@Override
public String getTypeString() {
return "plugin_json";
}
@Override
public String getProductType() {
return StringKit.EMPTY;
}
}