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

88 lines
1.6 KiB
Java
Raw Normal View History

2020-04-07 19:50:49 +08:00
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
*/
2020-05-01 20:57:23 +08:00
SuccessResult saveArea() throws Exception;
2020-04-07 19:50:49 +08:00
/**
* 企业数据迁移
*
* @return
* @throws Exception
*/
2020-05-01 20:57:23 +08:00
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;
2020-05-02 19:06:14 +08:00
/**
* 保存人员
*
* @return
* @throws Exception
*/
SuccessResult saveUser() throws Exception;
/**
* 保存人员地区
*
* @return
* @throws Exception
*/
SuccessResult saveUserArea() throws Exception;
2020-04-07 19:50:49 +08:00
}