ActivitiCostDataServiceI.java 871 B

12345678910111213141516171819202122
  1. package cn.com.lzt.cost.data.service;
  2. import cn.com.lzt.cost.pettycashaccount.entity.TBCostPettyCashAccountEntity;
  3. import org.jeecgframework.core.common.model.json.AjaxJson;
  4. import org.jeecgframework.core.common.service.CommonService;
  5. import org.jeecgframework.core.constant.Globals;
  6. import org.springframework.data.util.Pair;
  7. import org.springframework.web.bind.annotation.RequestParam;
  8. import javax.servlet.http.HttpServletRequest;
  9. import java.io.Serializable;
  10. import java.math.BigDecimal;
  11. public interface ActivitiCostDataServiceI extends CommonService{
  12. /**
  13. * @param updateId 更新id,统计金额的时候应该去掉此值
  14. * 检测费用申请是否超过预算限制
  15. * @return
  16. */
  17. public boolean checkCostRequestOver(String updateId,BigDecimal expectMoney,String costType, String yearMonth, String departId, String measureId, Integer includeTax);
  18. }