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

com.aliyun.dc.opplat.sdk.api.request.dataopen.ConditionModel Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

The newest version!
/**
 * Alipay.com Inc. Copyright (c) 2004-2020 All Rights Reserved.
 */
package com.aliyun.dc.opplat.sdk.api.request.dataopen;

import com.aliyun.dc.opplat.sdk.api.OpplatObject;
import com.aliyun.dc.opplat.sdk.api.internal.mapping.ApiField;

/**
 * 查询条件
 *
 * @author changlei.qcl
 * @version $Id: ConditionModel.java, v 0.1 2020年08月05日 11:39 AM changlei.qcl Exp $
 */
public class ConditionModel extends OpplatObject {

    private static final long serialVersionUID = 6112814227713718785L;

    /**
     * 

"lt"-"小于 <"

*

"le"-"小于等于 <="

*

"gt"-"大于 >"

*

"ge"-"大于等于 >="

*

"eq"-"等于"

*

"neq"-"不等于"

*

"in"-"包含"

*

"not_in"-"不包含"

*

"is_null"-"为空"

*

"not_null"-"不为空"

*/ @ApiField("op") private String op; @ApiField("value") private String value; public ConditionModel(String op, String value) { this.op = op; this.value = value; } /** * Getter method for property op. * * @return property value of op */ public String getOp() { return op; } /** * Setter method for property op. * * @param op value to be assigned to property op */ public void setOp(String op) { this.op = op; } /** * Getter method for property value. * * @return property value of value */ public String getValue() { return value; } /** * Setter method for property value. * * @param value value to be assigned to property value */ public void setValue(String value) { this.value = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy