zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.changhong.epc.admin.mapper.centen;
 
import com.changhong.epc.bean.admin.CostGroupType;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 *初始化向导使用
 *epc_init_company 
 * 
 */
public interface InitDataMapper {
    
    
    /**
     * 更新info表
     */
    int initTenant(@Param("tenantId")int tenantId,
            @Param("tenantName") String tenantName);
    
    
    /**
     *创建表 
     */
    int createTable(@Param("tenantId")int tenantId,@Param("companyId") int companyId);
    
    
    /**
     * 初始化公司tpye表信息
     *  
     */
    int initdataToComp(@Param("tenantId")int tenantId,@Param("companyId") int companyId,@Param("list")List<CostGroupType> cost,@Param("gId")int gId);
    
    
 
    /**
     * 初始化tpye表信息总表
     *  
     */
    int initdataToCompType(@Param("list")List<CostGroupType> cost,@Param("gId")int gId);
}