示例#1
0
 public boolean equals(CourseAttribute entity) {
   return entity.id() == id();
 }
示例#2
0
 public int compareTo(CourseAttribute entity) {
   if (equals(entity)) {
     return 0;
   }
   return RelationManager.compareIds(id(), entity.id());
 }