55 lines
1.1 KiB
Java
55 lines
1.1 KiB
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 saveArea() throws Exception;
|
|
|
|
/**
|
|
* 企业数据迁移
|
|
*
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
SuccessResult saveEnterprise() throws Exception;
|
|
|
|
/**
|
|
* 村镇组数据迁移
|
|
*
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
SuccessResult saveVillageGroup() throws Exception;
|
|
|
|
/**
|
|
* 村镇机构数据迁移
|
|
*
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
SuccessResult saveVillageGroupOrgan() throws Exception;
|
|
|
|
/**
|
|
* 网格员数据迁移
|
|
*
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
SuccessResult saveVillageGroupPerson() throws Exception;
|
|
}
|