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

shz.spring.model.IdVo Maven / Gradle / Ivy

There is a newer version: 2023.2.5
Show newest version
package shz.spring.model;

import javax.validation.constraints.NotNull;

public class IdVo {
    @NotNull(message = "ID不能为空")
    private T id;

    public T getId() {
        return id;
    }

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

    @Override
    public String toString() {
        return "IdVo{" +
                "id=" + id +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy