|
@@ -83,6 +83,15 @@ public class PlanAccountServiceImpl implements PlanAccountService {
|
|
|
return planAccountMapper.selectByExample(example);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<PlanAccount> getSpecialPlanAccount(String accountId) {
|
|
|
+ PlanAccountExample example = new PlanAccountExample();
|
|
|
+ example.createCriteria().andCreateTimeGreaterThan(DateUtil.getThatDayDate())
|
|
|
+ .andAccountIdEqualTo(accountId)
|
|
|
+ .andIsSpecialSettingEqualTo(1);
|
|
|
+ return planAccountMapper.selectByExample(example);
|
|
|
+ }
|
|
|
+
|
|
|
public List<PlanAccount> getPlanAccount(String planId, String accountId) {
|
|
|
PlanAccountExample example = new PlanAccountExample();
|
|
|
example.createCriteria().andCreateTimeGreaterThan(DateUtil.getThatDayDate())
|