|
|
|
@ -33,10 +33,9 @@ public class ClassifyServiceImpl implements ClassifyService { |
|
|
|
Map retmap =new HashMap(); |
|
|
|
int start=page>0?(page-1)* limit:1; |
|
|
|
|
|
|
|
int end=page*limit; |
|
|
|
|
|
|
|
//记录总数
|
|
|
|
int total =classifyMapper.countRsByMap(qmap); |
|
|
|
int end=page*limit>total?total:page*limit; |
|
|
|
|
|
|
|
SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
|
|
|
|
|
|
|
|