Exemplo n.º 1
0
 public int count(CellUpicInfoQuery query) {
   query.ensureInitialized();
   return cellUpicInfoMapper.getCellUpicInfoCountByQueryCriteria(query);
 }
Exemplo n.º 2
0
 public List<CellUpicInfo> getCellUpicInfos(int treeFolderIndexId) {
   CellUpicInfoQuery query = new CellUpicInfoQuery();
   query.indexId(treeFolderIndexId);
   return this.list(query);
 }
Exemplo n.º 3
0
 public List<CellUpicInfo> list(CellUpicInfoQuery query) {
   query.ensureInitialized();
   List<CellUpicInfo> list = cellUpicInfoMapper.getCellUpicInfosByQueryCriteria(query);
   return list;
 }