mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-08-21 08:27:11 +00:00
fix[module]: IEntity下的方法不能以is打头
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user