liujie
2025-07-18 a00c6d07e4c8eb629e5ffe4661dcde2686c1df53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.Date;
 
@Data
@TableName("tb_qichacha")
@ApiModel(value = "企查查三方接口调用记录表")
public class Qichacha {
 
    @TableId(type = IdType.AUTO)
    @ApiModelProperty(value = "主键ID")
    private Integer id;
 
    @TableField("type")
    @ApiModelProperty(value = "查询类型(1=基础查询,2=异常查询)", example = "1")
    private Integer type;
 
    @TableField(value = "time")
    @ApiModelProperty(value = "调用时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime time;
}