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
package com.changhong.epc.tenant.service.cost;
 
import com.changhong.epc.bean.tenant.cost.CostFromMapping;
import com.changhong.epc.bean.tenant.cost.extend.CostFromMappingExtend;
import com.changhong.epc.bean.tenant.cost.extend.CostTypeExtend;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface CostFromMappingService {
    
    
    /**
     * 查询单条表单
     */
    CostFromMappingExtend selectOne(CostFromMapping costFrom);
    
    int updateCost(CostTypeExtend cost);
 
    /**
     * 根据表单id,查询费用类型对应表单信息
     * @param cost
     * @return
     */
    List<CostFromMapping> getConstFroms(CostFromMapping cost);
 
    List<CostFromMapping> selectType(CostFromMapping cost);
}