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{ /** * 添加费用类型 * @param suppStanderExtend * @return */ int SuppStanderSave(@Param("supp") SuppStanderExtend suppStanderExtend); /** * 按费用类型查询 * @param supp * @return */ List selectByid(@Param("ctId") Integer ctId); /** * 修改状态为99 * @param SuppStanderExtend * @return */ int SuppStanderUpdate(@Param("supp") List suppStanderExtend); /** * 获得补助标准对应费用类型ids * @return */ List selectCostTypeIds(); int copySuppStander(@Param("costTypeTempId") Integer costTypeTempId, @Param("ctId") Integer ctId); int copyAppStanderDef(@Param("costTypeTempId") Integer costTypeTempId, @Param("ctId") Integer ctId); }