根据时间字段查询时间段内数据
String sdates = stime + " 00:00:00";
String edates = stime + " 23:59:59";
正常情况下:
cnd.and("createtime ”,">=", sdates );
cnd.and("createtime ”,"<=", edates );
在数据相差超过一天的时候,可以正常查询数据。
但是在一天内的数据,无法查询。
下面的方法可以查询,当日数据,多日数据
cnd.and(new Static("createtime >= "" + sdates+"""));
cnd.and(new Static("createtime <= "" + edates+"""));