- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在我的应用程序中,每周都会对客户进行评估,我需要他们在特定分支机构代码及其类别中的最新评估。
在我的 json 数据中:
分支代码:customerView.branchCode
类别:cardInfo._id
评估日期:日期
对象(Json):
/* 1 */
{
"_id" : ObjectId("5d2c552443a99e1c2464b23a"),
"customerView" : {
"_id" : NumberLong(3278642838),
"number" : NumberLong(2374051),
"type" : 1,
"branchCode" : "1100"
},
"cardInfo" : {
"_id" : ObjectId("5cee1eaa9eae1e1330b5219c"),
"modelId" : "5cecbbcd9eae1e0be0530ccb",
},
"totalScore" : 21.0,
"date" : ISODate("2019-07-14T19:30:00.000Z"),
"version" : 0,
"_class" : "entity.CustomerAssessmentDocument"
}
,
/* 2 */
{
"_id" : ObjectId("5d2d57da43a99e1a5c4728d7"),
"customerView" : {
"_id" : NumberLong(3278642838),
"number" : NumberLong(2374051),
"type" : 1,
"branchCode" : "1100"
},
"cardInfo" : {
"_id" : ObjectId("5cee1eaa9eae1e1330b5219c"),
"modelId" : "5cecbbcd9eae1e0be0530ccb"
},
"totalScore" : 11.0,
"date" : ISODate("2019-07-15T19:30:00.000Z"),
"version" : 0,
"_class" : "entity.CustomerAssessmentDocument"
}
在此示例中,我有两条具有相同 customerView.number
和 cardInfo._id
的记录,并且我需要具有 5d2d57da43a99e1a5c4728d7 id 的对象,因为该日期大于该日期。
Java:
public List<CustomerAssessmentDocument.CustomerAssessmentCustomerNumberProjection> getTopCustomersSortedByDateInBranch(
String cardId, Set<String> branches) {
final Criteria criteria =
Criteria.where("totalScore").ne(0D)
.and("customerView.branchCode").in(branches)
.and("cardInfo._id").is(new ObjectId(cardId));
Aggregation aggregation = Aggregation.newAggregation(
Aggregation.sort(Sort.Direction.DESC, "date"),
Aggregation.match(criteria),
Aggregation.project("totalScore", "customerView", "date"),
Aggregation.group("$customerView.number").first("date").as("date")
);
final AggregationResults<CustomerAssessmentDocument.CustomerAssessmentCustomerNumberProjection> customerAssessmentDocument =
mongoTemplate.aggregate(
aggregation,
"CS_ASSESSMENT",
CustomerAssessmentDocument.CustomerAssessmentCustomerNumberProjection.class
);
return customerAssessmentDocument.getMappedResults();
}
Java 类:
@Document(collection = "CS_ASSESSMENT")
public class CustomerAssessmentDocument extends AuditDocument {
@Id
private String id;
private CustomerViewEnt customerView;
private CardInfo cardInfo;
private Double totalScore;
private String description;
private String assessmentReqId;
private Date date;
private Date effectiveDate;
...
public class CustomerAssessmentCustomerNumberProjection {
/**
* CustomerAssessmentDocument->customerView.number
*/
private Long id;
/**
* CustomerAssessmentDocument->date
*/
private Date date;
/**
* CustomerAssessmentDocument->totalScore
*/
private Double totalScore;
}
}
返回对象:
0 =>
id = 2374051 /*customerView.number*/
date = "2019-07-15T19:30:00.000Z"
totalScore = null
任何人都可以帮助我如何获取客户号码中的totalScore
值?
最佳答案
在组聚合中,as()
返回链GroupOption
对象,它可以根据first(...)
或last(...)
记录完成其他字段。
Aggregation.group("$customerView.number").first("totalScore").as("totalScore").first("date").as("date")
返回对象:
0 =>
id = 2374051 /*customerView.number*/
date = "2019-07-15T19:30:00.000Z"
totalScore = 11.0
关于java - Spring MongoDB : Aggregation first record base on date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57052737/
数据框有一个字符串类型的日期列 '2017-01-01' 它被转换为 DateType() df = df.withColumn('date', col('date_string').cast(Dat
这个问题在这里已经有了答案: What is "x && foo()"? (5 个答案) 关闭 8 年前。 我在 bootstrap-datepicker.js 文件中遇到过这个。 作者在_setD
我有一个数据库 utc 字符串,我正在传递到 Date(attrs.endDate),然后通过 new Date() 减去当前的 utc 日期,但我无法得到它来为我提供 2 个 utc 日期的正确差异
这个问题在这里已经有了答案: how to determine if 2 dates object equals each other? [duplicate] (3 个答案) 关闭 6 年前。 我
这个问题已经有答案了: How can I convert "/Date(1399739515000)/" into date format in JavaScript? (3 个回答) 已关闭 8
根据MDN ,我们只能将以下类型的参数传递给 Date 构造函数: new Date(); new Date(value); // Unix timestamp new Date(dateString
我从表中获取所有项目: endDate >= 现在 endDate 为 NULL published 等于 1。 这是我所拥有的,但它给了我 0 个项目: $items = Items::orderB
此查询需要很长时间才能完成。当我将 WHERE 子句设置为 new_dl >= '2014-01-01' 时,查询大约需要 6 分钟才能浏览大约 3 个月的数据。现在不知道为什么这个应该从 12 个月
我有一个正在为项目开发的小型 Java 程序,它使用 JavaMail 从指定的 URI 中提取用户的收件箱,然后开始处理消息。 在 Outlook 中,属性菜单中有一个功能可以设置邮件的到期日期,它
我想在获取 Date.getHours()、Date.getMinutes() 和 Date.getSeconds() 的值后格式化输出>. 这是一条漫长的路: var dt = new Date()
我发现java.text.DateFormat有两种格式化日期的方法。一种是采用 Date 参数,另一种是采用 Object 参数。我检查了DateFormat源代码,似乎他们调用了不同的内部方法。
我有两个对象,p4 和 p5,它们都具有 Date 属性。在某些时候,构造函数工作正常: p4.setClickDate(new Date(System.currentTimeMillis() - 8
我是使用 Sequelize 和 Node.js 的新手,但我的代码中存在日期比较问题。 User.findOne({ where: { resetToken: passwordToken,
我正在使用一个名为 fullcalendar 的 jquery 日历。当用户单击某一天时,他们将被发送到另一个页面以创建该天的事件。单击的日期作为 date 提供。然后通过下面的函数运行将其转换为 U
我有一个列表列表,每个列表中都有整数值,代表 8 年期间的日期。 dates = [[2014, 11, 14], [2014, 11, 13], ....., [2013, 12, 01]
我有两个表: 首先是TimeValues(示例) time | value 12/28/18 | 5.6 01/03/19 | 5.6 01/04/19 | 5.6 01/09/19 | 5.
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
像这样实例化的日期对象: new Date("2011-12-13") 返回一个认为自己是星期一的日期对象: Date {Mon Dec 12 2011 16:00:00 GMT-0800 (PST)
我需要选择入住日期和退房日期在指定日期范围之间的房价。这些费率根据其条件单独命名。房费取决于所选日期。这是我的代码: rate_eb rate_name rate_starts rat
我有 [Int64:[String:String]] 其中 Int64 是时间戳。如何检测和删除 [String:String] 中的参数之一是 ["name"] = "test" 并重复多次的同一天
我是一名优秀的程序员,十分优秀!