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
package com.changhong.epc.tenant.mapper.tenant.cost;
 
 
import org.apache.ibatis.annotations.Param;
 
import com.changhong.epc.bean.tenant.cost.CostFromMapping;
import com.changhong.epc.bean.tenant.cost.extend.CostFromMappingExtend;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
 
import java.util.List;
 
/**
 * 
 * @ClassName: CostFromMappingMapper
 * @author [九鼎联合科技] 
 * @date 2017年09月27日 下午02:48:35
 */
public interface CostFromMappingMapper extends MybatisBaseMapper<CostFromMapping>{
    
    /**
     * 按CtId查询是否查询是否存在
     */
    CostFromMapping selectByctId(@Param("cost") CostFromMapping cost);
    
    int updateCost(CostFromMapping cost);
    
    int deleteForm(@Param("id") int id);
    
    CostFromMappingExtend selectCostType(CostFromMapping cost);
    
    /**
     *删除关联表单 
     */
    int deleteFormByCtidAndType(@Param("ctId")Integer ctId,@Param("type")String type);
 
    List<CostFromMapping> getConstFroms(CostFromMapping cost);
 
    List<CostFromMapping> selectType(@Param("type") String type);
}