我在 QuerySpec 的基础上使用查询日期CREATE_TIMESTAMP
,以下是我的一段代码,编译器说CREATE_TIMESTAMP
是 a Timestamp
,而是day
String 。我尝试了很多工作,但没有锻炼
Date date=new Date();
SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd");
String day=format.format(date);
qs.appendWhere(new SearchCondition(QueueEntry.class,
QueueEntry.CREATE_TIMESTAMP,
SearchCondition.LIKE,day),
new int[] {0,1});