use of cn.exrick.manager.pojo.TbItemExample in project xmall by Exrick.
the class ItemServiceImpl method getAllItemCount.
@Override
public DataTablesResult getAllItemCount() {
TbItemExample example = new TbItemExample();
Long count = tbItemMapper.countByExample(example);
DataTablesResult result = new DataTablesResult();
result.setRecordsTotal(Math.toIntExact(count));
return result;
}
Aggregations