update mybatis-plus 3.5.2 => 3.5.3

update 优化 整理无用代码
This commit is contained in:
疯狂的狮子li
2022-12-29 10:12:25 +08:00
parent 996835d124
commit d87dfd6397
4 changed files with 3 additions and 13 deletions

View File

@ -2,7 +2,6 @@ package com.ruoyi.demo.controller.queue;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.jetbrains.annotations.NotNull;
/**
* 实体类 注意不允许使用内部类 否则会找不到类
@ -17,7 +16,7 @@ public class PriorityDemo implements Comparable<PriorityDemo> {
private Integer orderNum;
@Override
public int compareTo(@NotNull PriorityDemo other) {
public int compareTo(PriorityDemo other) {
return Integer.compare(getOrderNum(), other.getOrderNum());
}
}