huliguo
2025-06-04 7e9508a252df668c3f7472be02595c79b21be11a
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
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
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 = "调用时间")
    private Date time;
}