package cn.efunbox.manage.base.service; import cn.efunbox.manage.base.entity.CostType; import cn.efunbox.manage.common.result.ApiResult; public interface CostTypeService { ApiResult list(CostType costType); ApiResult save(CostType costType); ApiResult update(CostType costType); }