记得上下班打卡 | git大法好,push需谨慎

Commit 56e76b2b authored by GaoHu's avatar GaoHu

exit 新增开始结束时间查询

parent 953b1dc0
......@@ -36,14 +36,14 @@ public class GoblinGoodsAnticipateValueParam{
/**
* 预约开始时间
*/
/*@ApiModelProperty(position = 18, required = false, value = "预约开始时间")
private String aboutStartDate;*/
@ApiModelProperty(position = 18, required = false, value = "预约开始时间")
private String aboutStartDate;
/**
* 预约结束时间
*/
/* @ApiModelProperty(position = 18, required = false, value = "预约结束时间")
private String aboutEndDate;*/
@ApiModelProperty(position = 18, required = false, value = "预约结束时间")
private String aboutEndDate;
/**
* 预约名称
......
......@@ -69,22 +69,22 @@ public class GoblinMongoUtils {
LocalDateTime createdAtBegin = createDt.withHour(0).withMinute(0).withSecond(0).withNano(0);
LocalDateTime createdAtEnd = createDt.withHour(23).withMinute(59).withSecond(59).withNano(999);
criteria.and("createdDate").gte(createdAtBegin).lte(createdAtEnd);
criteria = criteria.and("createdDate").gte(createdAtBegin).lte(createdAtEnd);
}
/*if (StringUtils.isNotBlank(goblinGoodsAnticipateValueParam.getAboutStartDate())){
if (StringUtils.isNotBlank(goblinGoodsAnticipateValueParam.getAboutStartDate())){
LocalDateTime createDt = DateUtil.Formatter.yyyyMMddHHmmss.parse(goblinGoodsAnticipateValueParam.getAboutStartDate());
LocalDateTime createdAtBegin = createDt.withHour(0).withMinute(0).withSecond(0).withNano(0);
LocalDateTime createdAtEnd = createDt.withHour(23).withMinute(59).withSecond(59).withNano(999);
criteria.and("aboutStartDate").gte(createdAtBegin).lte(createdAtEnd);
criteria = criteria.and("aboutStartDate").gte(createdAtBegin).lte(createdAtEnd);
}
if (StringUtils.isNotBlank(goblinGoodsAnticipateValueParam.getAboutEndDate())){
LocalDateTime createDt = DateUtil.Formatter.yyyyMMddHHmmss.parse(goblinGoodsAnticipateValueParam.getAboutEndDate());
LocalDateTime createdAtBegin = createDt.withHour(0).withMinute(0).withSecond(0).withNano(0);
LocalDateTime createdAtEnd = createDt.withHour(23).withMinute(59).withSecond(59).withNano(999);
criteria.and("aboutEndDate").gte(createdAtBegin).lte(createdAtEnd);
}*/
criteria = criteria.and("aboutEndDate").gte(createdAtBegin).lte(createdAtEnd);
}
Query query = Query.query(criteria);
//查询总数
long count = mongoTemplate.count(query, GoblinGoodsAnticipateValueVo.class, GoblinGoodsAnticipateValueVo.class.getSimpleName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment