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

com.suchtool.nicecommon.core.entity.CommonVO Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package com.suchtool.nicecommon.core.entity;

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

import java.time.LocalDateTime;

/**
 * 数据库公共实体类
 */
@Data
public class CommonVO {
    @ApiModelProperty("主键")
    private Long id;

    @ApiModelProperty("创建时间")
    private LocalDateTime createTime;

    @ApiModelProperty("修改时间")
    private LocalDateTime updateTime;

    @ApiModelProperty("创建人ID")
    private String createId;

    @ApiModelProperty("创建人名字")
    private String createName;

    @ApiModelProperty("更新人ID")
    private String updateId;

    @ApiModelProperty("更新人名字")
    private String updateName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy