Commit c8324839 by huluobin

fix

parent f091c2d4
......@@ -117,6 +117,9 @@ public class CostTemplateServiceImpl extends ServiceImpl<CostTemplateMapper, Cos
if (req.getEnableFinalReview() != null) {
wrapper.eq(CostTemplate::getEnableFinalReview, req.getEnableFinalReview());
}
if (req.getEnableFinancialAutoReview() != null) {
wrapper.eq(CostTemplate::getEnableFinancialAutoReview, req.getEnableFinancialAutoReview());
}
if (req.getStartTime() != null) {
wrapper.ge(CostTemplate::getLastUpdateTime, req.getStartTime());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment