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
package com.changhong.epc.tenant.mapper.tenant.norm;
 
import java.util.List;
 
import com.changhong.epc.bean.tenant.cost.CostType;
import org.apache.ibatis.annotations.Param;
 
import com.changhong.epc.bean.tenant.norm.SuppStander;
import com.changhong.epc.bean.tenant.norm.extend.SuppStanderExtend;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
 
public interface SuppStanderMapper extends MybatisBaseMapper<SuppStander>{
 
    /**
     * 添加费用类型
     * @param suppStanderExtend
     * @return
     */
    int SuppStanderSave(@Param("supp") SuppStanderExtend suppStanderExtend);
    
    /**
     * 按费用类型查询
     * @param supp
     * @return
     */
    List<SuppStanderExtend> selectByid(@Param("ctId") Integer ctId);
    
    /**
     * 修改状态为99
     * @param SuppStanderExtend
     * @return
     */
    int SuppStanderUpdate(@Param("supp") List<SuppStanderExtend> suppStanderExtend);
 
    /**
     * 获得补助标准对应费用类型ids
     * @return
     */
    List<CostType> selectCostTypeIds();
 
    int copySuppStander(@Param("costTypeTempId") Integer costTypeTempId, @Param("ctId") Integer ctId);
 
    int copyAppStanderDef(@Param("costTypeTempId") Integer costTypeTempId, @Param("ctId") Integer ctId);
}