All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.cassite.daf4j.UpdateEntry Maven / Gradle / Ivy

The newest version!
package net.cassite.daf4j;

/**
 * 更新依据
 */
public class UpdateEntry {
    /**
     * 要更新的字段
     */
    public final IData data;
    /**
     * 要更新为的值(可以是表达式)
     */
    public final Object updateValue;

    UpdateEntry(IData data, Object updateValue) {
        this.data = data;
        this.updateValue = updateValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy