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

cn.schoolwow.workflow.domain.task.ContextDataQuery Maven / Gradle / Ivy

package cn.schoolwow.workflow.domain.task;

public class ContextDataQuery {
    /**字段名称*/
    public String fieldName;

    /**关系符*/
    public String operator = "=";

    /**字段值*/
    public Object value;

    public ContextDataQuery(String fieldName, Object value) {
        this.fieldName = fieldName;
        this.value = value;
    }

    public ContextDataQuery(String fieldName, String operator, Object value) {
        this.fieldName = fieldName;
        this.operator = operator;
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy