com.tmsps.ne4springboot.orm.param.NeParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ne4SpringBoot Show documentation
Show all versions of ne4SpringBoot Show documentation
NE For SpringBoot is good :)
The newest version!
package com.tmsps.ne4springboot.orm.param;
import java.io.Serializable;
import cn.hutool.core.util.ObjectUtil;
import lombok.Getter;
@Getter
public class NeParam implements Serializable {
private static final long serialVersionUID = 1L;
private boolean isNull = true;
private Object value;
public boolean isNotNull() {
return !isNull;
}
public NeParam setValue(Object value) {
this.isNull = ObjectUtil.isNull(value);
this.value = value;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy