31 lines
647 B
Java
31 lines
647 B
Java
|
package com.cm.inspection.service.data;
|
|||
|
|
|||
|
import com.cm.common.result.SuccessResult;
|
|||
|
|
|||
|
/**
|
|||
|
* When you feel like quitting. Think about why you started
|
|||
|
* 当你想要放弃的时候,想想当初你为何开始
|
|||
|
*
|
|||
|
* @ClassName: IDataService
|
|||
|
* @Description: 数据
|
|||
|
* @Author: WangGeng
|
|||
|
* @Date: 2020/4/7 11:35
|
|||
|
* @Version: 1.0
|
|||
|
**/
|
|||
|
public interface IDataService {
|
|||
|
/**
|
|||
|
* 地区数据迁移
|
|||
|
*
|
|||
|
* @return
|
|||
|
*/
|
|||
|
SuccessResult saveAreaDataMigration() throws Exception;
|
|||
|
|
|||
|
/**
|
|||
|
* 企业数据迁移
|
|||
|
*
|
|||
|
* @return
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
SuccessResult saveEnterpriseDataMigration() throws Exception;
|
|||
|
}
|