com.obatis.core.common.PrimaryKeyInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
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