CostTypeService.java 298 B

12345678910111213
  1. package cn.efunbox.manage.base.service;
  2. import cn.efunbox.manage.base.entity.CostType;
  3. import cn.efunbox.manage.common.result.ApiResult;
  4. public interface CostTypeService {
  5. ApiResult list(CostType costType);
  6. ApiResult save(CostType costType);
  7. ApiResult update(CostType costType);
  8. }