btyjj-inspection/src/main/java/com/cm/inspection/service/data/IDataService.java

88 lines
1.6 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;
/**
* 网格员和部门
*
* @return
* @throws Exception
*/
SuccessResult saveVillageOrganPerson() throws Exception;
/**
* 网格员和企业
*
* @return
* @throws Exception
*/
SuccessResult saveCompanyPerson() throws Exception;
/**
* 保存人员
*
* @return
* @throws Exception
*/
SuccessResult saveUser() throws Exception;
/**
* 保存人员地区
*
* @return
* @throws Exception
*/
SuccessResult saveUserArea() throws Exception;
}