根据 Java 集合对象中的一个字段对其进行排序
2022-09-01 02:17:42
我有以下集合:
Collection<AgentSummaryDTO> agentDtoList = new ArrayList<AgentSummaryDTO>();
其中看起来像这样:AgentSummaryDTO
public class AgentSummaryDTO implements Serializable {
private Long id;
private String agentName;
private String agentCode;
private String status;
private Date createdDate;
private Integer customerCount;
}
现在我必须根据字段对集合进行排序,如何实现这一点?agentDtoList
customerCount