fix[module]: IEntity下的方法不能以is打头

This commit is contained in:
jianan
2022-07-21 18:02:06 +08:00
parent dcd8476fa5
commit d0ecf2c29a
@@ -53,7 +53,7 @@ public interface IEntity<PK extends Comparable<PK>> {
*
* @return EntityCaches中取出的值在数据库中是否存在
*/
default boolean isNull() {
default boolean checkNull() {
PK idValue = id();
if (idValue == null) {
return true;