| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package jnpf.base.model.InterfaceOauth;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 数据接口调用日志
- *
- * @author JNPF开发平台组
- * @version V3.4.2
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2021-06-10
- */
- @Data
- public class IdentDataInterfaceLogVO implements Serializable {
- @Schema(description = "主键")
- private String id;
- @Schema(description = "调用id")
- private String invokId;
- @Schema(description = "调用时间")
- private Date invokTime;
- @Schema(description = "用户id")
- private String userId;
- @Schema(description = "调用ip")
- private String invokIp;
- @Schema(description = "调用设备")
- private String invokDevice;
- @Schema(description = "调用类型")
- private String invokType;
- @Schema(description = "调用响应时间")
- private Integer invokWasteTime;
- @Schema(description = "租户id")
- private String tenantId;
- @Schema(description = "授权码")
- private String oauthAppId;
- @Schema(description = "名称")
- private String fullName;
- @Schema(description = "编码")
- private String enCode;
- }
|