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
package com.changhong.epc.admin.service.cost;
 
import java.util.List;
 
import com.changhong.epc.bean.admin.CostGroupType;
import com.changhong.epc.bean.admin.CostTypeTemplate;
import com.changhong.epc.bean.admin.extend.CostGroupTypeExtend;
import com.changhong.epc.bean.admin.extend.CostTypeTemplateExtend;
import org.apache.ibatis.annotations.Param;
 
 
public interface CostTypeTemplateService {
 
    /**
     * @Author WangYX
     * @Description 查询业务类型模板
     * @Date 2019/4/1 1:14 PM
     */
    CostTypeTemplateExtend getCostTypeTemplate(Integer ctId);
 
    /**
     * 查询所有费用类型组信息
     * @return
     */
    List<CostTypeTemplate> selectByPage(CostTypeTemplate costTypeTemplate);
    
    /**
     * 修改费用组类型信息
     * @return
     */
    int updateCostType(CostTypeTemplate costTypeTemplate);
    
    /**
     * 添加费用组类型信息
     * @return
     */
    CostTypeTemplate addCostType(CostTypeTemplate costTypeTemplate);
    
    /**
     * 删除费用组类型信息
     * @return
     */
    int deleteCostType(List<String> costTypeTemplate);
    
    
    /**
     *zz
     *通过name查询费用类型模板 
     * 
     */
    List<CostTypeTemplate> getCostTypeTemplateByName(String name);
    
    /**
     * 创建模板并添加费用项
     */
    int addTemplateAndCostType(CostTypeTemplate costTypeTemplate,List<CostGroupTypeExtend> constGroupTypes);
 
    
    /**
     * 修改费用项模板及费用类型
     */
    int updateTemplateAndCostType(CostTypeTemplate costTypeTemplate,List<CostGroupTypeExtend> constGroupTypes);
    
    List<CostGroupType> getCostTypeByTemId(int id);
 
    int updateTemplateInfo(CostTypeTemplateExtend costTypeTemplate);
}