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

com.starxmind.boot.starter.entities.IdEntity Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package com.starxmind.boot.starter.entities;

import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.validation.constraints.NotNull;

/**
 * ID实体
 *
 * @author pizzalord
 * @since 1.0
 */
@AllArgsConstructor
@NoArgsConstructor
@Data
public class IdEntity {
    @ApiModelProperty(value = "id", required = true)
    @NotNull(message = "不能为空")
    private T id;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy