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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.changhong.epc.tenant.mapper.tenant.cost;
 
import java.util.List;
import java.util.Map;
 
import org.apache.ibatis.annotations.Param;
 
import com.changhong.epc.bean.admin.MasterElementMapping;
import com.changhong.epc.bean.tenant.cost.CostType;
import com.changhong.epc.bean.tenant.cost.extend.CostTypeExtend;
import com.changhong.epc.bean.tenant.sunCloud.UpdataBusType;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
 
public interface CostTypeMapper extends MybatisBaseMapper<CostType> {
    /*
     * 查询层级
     */
    List<CostTypeExtend> selectCostTypeAll(@Param("type") String type);
 
    /*
     * 查询子级数量
     */
    int selectConstCounts(@Param("parentId") int parentId);
 
    /*
     * 添加费用类型
     */
    int insertCost(CostTypeExtend costType);
 
    /*
     * 修改费用类型
     */
    int updateCostType(CostTypeExtend costType);
 
    /*
     * 费用类型分页查询
     */
    List<CostTypeExtend> selectCostTypePage(CostType costType);
 
    int selectReplace(int parentId);
 
    /**
     * 根据拖拽修改Id
     */
    int move(@Param("data") CostType costType);
 
    /**
     * 逻辑删除
     */
    int deleteCost(@Param("id") Integer id);
 
    /**
     * 查询单条数据
     */
    CostTypeExtend selectSingle(CostTypeExtend cost);
 
     /**
     * 模糊查询费用类型
     */
    List<CostTypeExtend> selectlike(@Param("nodeName") String nodeName);
    
    /**
     * 单条查询业务类型用于code转value
     */
    CostType getCost(CostType cost);
    
    
    /**
     * 物理删除记录
     */
    void deleteBusType(Integer id); 
    
    /**
     * 删除父级下所有子级
     */
    void deleteType(Integer id);
    
    /**
     * 根据orderTypeCode修改
     */
    int updateBus(CostType costType);
    
    /**
     * 修改子级type
     */
    int updateType(CostType costType);
    
    /**
     * 查询单挑记录是否存在
     */
    CostType selectParentId(CostType costType);
    
    /**
     * 查询子级是否存在
     */
    List<CostType> selectChild(CostType costType);
    
    
    int insertUpdataBusType(@Param("updataBusType")UpdataBusType updataBusType);
    
    int selectByName(@Param("codeId")String codeId);
    
    int updateByCodeId(@Param("updataBusType")UpdataBusType updataBusType);
    
    int delteByCodeId(@Param("codeId")String codeId);
}