32 lines
744 B
Java
32 lines
744 B
Java
package net.srt.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
import net.srt.framework.mybatis.entity.BaseEntity;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @ClassName ApiLogEntity
|
|
* @Description 描述
|
|
* @Author 栗永斌
|
|
*/
|
|
@Data
|
|
@TableName(value = "data_service_api_log",autoResultMap = true)
|
|
public class ApiLogEntity extends BaseEntity {
|
|
// private Integer id;
|
|
private String url;
|
|
private Integer duration;
|
|
private String ip;
|
|
private Integer apiId;
|
|
private String error;
|
|
private Integer projectId;
|
|
// private String deleted;
|
|
// private Integer creator;
|
|
// private String createTime;
|
|
// private Integer updater;
|
|
private Date updateTime;
|
|
private String apiName;
|
|
|
|
}
|