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