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
package com.changhong.epc.tenant.mapper.tenant.system;
 
import com.changhong.epc.bean.tenant.system.SystemForm;
import com.changhong.epc.bean.tenant.system.SystemFormInfo;
import org.apache.ibatis.annotations.Param;
 
import com.changhong.epc.bean.admin.TenantInfo;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
 
import java.util.Map;
 
public interface TenantInfoMapper  extends MybatisBaseMapper<TenantInfo> {
    
    
    TenantInfo selectTenant(@Param("tenant") TenantInfo tenantInfo);
    
    Integer updateTenanName(@Param("tenant") TenantInfo tenantInfo);
 
    void createTable();
 
    void dropFunction();
 
    void createFunction();
 
    void createView();
 
    void runSql(@Param("sql") String viewSql);
 
    void initSysForm(@Param("entry") Map.Entry<SystemForm, SystemFormInfo> systemFormSystemFormInfoEntry);
}