zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package com.changhong.epc.tenant.mapper.tenant.norm;
Z 2
3 import java.util.List;
4
5 import com.changhong.epc.bean.tenant.cost.CostType;
6 import org.apache.ibatis.annotations.Param;
7
8 import com.changhong.epc.bean.tenant.norm.SuppStander;
9 import com.changhong.epc.bean.tenant.norm.extend.SuppStanderExtend;
10 import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
11
12 public interface SuppStanderMapper extends MybatisBaseMapper<SuppStander>{
13
14     /**
15      * 添加费用类型
16      * @param suppStanderExtend
17      * @return
18      */
19     int SuppStanderSave(@Param("supp") SuppStanderExtend suppStanderExtend);
20     
21     /**
22      * 按费用类型查询
23      * @param supp
24      * @return
25      */
26     List<SuppStanderExtend> selectByid(@Param("ctId") Integer ctId);
27     
28     /**
29      * 修改状态为99
30      * @param SuppStanderExtend
31      * @return
32      */
33     int SuppStanderUpdate(@Param("supp") List<SuppStanderExtend> suppStanderExtend);
34
35     /**
36      * 获得补助标准对应费用类型ids
37      * @return
38      */
39     List<CostType> selectCostTypeIds();
40
41     int copySuppStander(@Param("costTypeTempId") Integer costTypeTempId, @Param("ctId") Integer ctId);
42
43     int copyAppStanderDef(@Param("costTypeTempId") Integer costTypeTempId, @Param("ctId") Integer ctId);
44 }