package com.product.module.data.service.idel;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.entity.RequestParameterEntity;
|
import com.product.core.exception.BaseException;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.io.IOException;
|
|
/**
|
* Copyright © 6c
|
*
|
* @Date: 2021-06-30 09:18
|
* @Author: 6c
|
* @Description:
|
*/
|
public interface ISystemDataUpLoadService {
|
void deleteModel(FieldSetEntity fse) throws BaseException;
|
|
JSONObject uploadTemplate(RequestParameterEntity rpe);
|
|
void saveTemplate(FieldSetEntity fse);
|
|
String recordDataImport(RequestParameterEntity rpe);
|
|
void recordDataSave(FieldSetEntity fse);
|
}
|