master
parent
030f6fcfea
commit
c6385f4c06
|
|
@ -16,6 +16,7 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* 对账单
|
||||
*
|
||||
* @author ljw
|
||||
*/
|
||||
@Slf4j
|
||||
|
|
@ -61,7 +62,7 @@ public class BillServiceImpl extends ServiceImpl<BillMapper, BillEntity> impleme
|
|||
*/
|
||||
@Override
|
||||
public PageResult<BillEntity> paging(PageParam pageParam, BillEntity billEntity) {
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<BillEntity>query(billEntity)));
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.query(billEntity)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* 收费项目
|
||||
*
|
||||
* @author ljw
|
||||
*/
|
||||
@Slf4j
|
||||
|
|
@ -61,7 +62,7 @@ public class ExpenseItemServiceImpl extends ServiceImpl<ExpenseItemMapper, Expen
|
|||
*/
|
||||
@Override
|
||||
public PageResult<ExpenseItemEntity> paging(PageParam pageParam, ExpenseItemEntity expenseItemEntity) {
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<ExpenseItemEntity>query(expenseItemEntity)));
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.query(expenseItemEntity)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* 资金账户表
|
||||
*
|
||||
* @author ljw
|
||||
*/
|
||||
@Slf4j
|
||||
|
|
@ -61,7 +62,7 @@ public class MoneyAccountServiceImpl extends ServiceImpl<MoneyAccountMapper, Mon
|
|||
*/
|
||||
@Override
|
||||
public PageResult<MoneyAccountEntity> paging(PageParam pageParam, MoneyAccountEntity moneyAccountEntity) {
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<MoneyAccountEntity>query(moneyAccountEntity)));
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.query(moneyAccountEntity)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* 资金流水
|
||||
*
|
||||
* @author ljw
|
||||
*/
|
||||
@Slf4j
|
||||
|
|
@ -61,7 +62,7 @@ public class MoneyFlowServiceImpl extends ServiceImpl<MoneyFlowMapper, MoneyFlow
|
|||
*/
|
||||
@Override
|
||||
public PageResult<MoneyFlowEntity> paging(PageParam pageParam, MoneyFlowEntity moneyFlowEntity) {
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<MoneyFlowEntity>query(moneyFlowEntity)));
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.query(moneyFlowEntity)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* 产品分类
|
||||
*
|
||||
* @author ljw
|
||||
*/
|
||||
@Slf4j
|
||||
|
|
@ -46,7 +47,7 @@ public class GoodsCategoryServiceImpl extends ServiceImpl<GoodsCategoryMapper, G
|
|||
|
||||
@Override
|
||||
public PageResult<GoodsCategoryEntity> paging(PageParam pageParam, GoodsCategoryEntity goodsCategoryEntity) {
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<GoodsCategoryEntity>query(goodsCategoryEntity)));
|
||||
return PageResult.of(this.page(pageParam.toPage(), Wrappers.query(goodsCategoryEntity)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue