package com.changhong.epc.admin.mapper.centen.cost; import org.apache.ibatis.annotations.Param; import com.changhong.epc.bean.admin.CostFromTemplate; import com.changhong.epc.bean.admin.extend.CostGroupTypeExtend; import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper; /** * * @ClassName: CostFromTemplateMapper * @author [九鼎联合科技] * @date 2017年11月09日 下午04:32:27 */ public interface CostFromTemplateMapper extends MybatisBaseMapper{ CostFromTemplate selectByctId(@Param("cost") CostFromTemplate cost); int updateCost(CostFromTemplate cost); int deleteForm(@Param("id") int id); int deleteCostNull(@Param("id") Integer id); CostGroupTypeExtend selectCostType(CostFromTemplate cost); }