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

com.obatis.core.common.PrimaryKeyInput Maven / Gradle / Ivy

There is a newer version: 3.0.1-release
Show newest version
package com.obatis.core.common;

import io.swagger.annotations.ApiModelProperty;

import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.math.BigInteger;

/**
 *  id 查询参数实体
 */
public class PrimaryKeyInput implements Serializable {

    @ApiModelProperty("主键ID")
    @NotNull(message = "ID不能为空")
    private BigInteger id;

    public BigInteger getId() {
        return id;
    }

    public void setId(BigInteger id) {
        this.id = id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy