46 lines
998 B
Java
46 lines
998 B
Java
package com.celnet.datadump.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* <p>
|
|
* 数据报表
|
|
* </p>
|
|
*
|
|
* @author Red
|
|
* @since 2023-03-10
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@TableName("data_report")
|
|
@ApiModel(value = "DataReport对象", description = "数据报表")
|
|
public class DataReport implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty("id")
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
@ApiModelProperty("apis")
|
|
@TableField("apis")
|
|
private String apis;
|
|
|
|
@ApiModelProperty("类别 1存量 2增量")
|
|
@TableField("type")
|
|
private Integer type;
|
|
|
|
@ApiModelProperty("创建时间")
|
|
@TableField(value = "created_date", fill = FieldFill.INSERT)
|
|
private LocalDateTime createdDate;
|
|
|
|
|
|
}
|