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);
|
}
|