12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.phm.manage.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.phm.common.annotation.Excel;
- import com.phm.common.core.domain.BaseEntity;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import java.util.Date;
- /**
- * 外部接口日志对象 sys_external_interface_log
- *
- * @author phm
- * @date 2023-08-22
- */
- @EqualsAndHashCode(callSuper = true)
- @Data
- public class ExternalInterfaceLog extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 唯一ID
- */
- private Long id;
- /**
- * 接口结果
- */
- @Excel(name = "接口结果")
- private String result;
- /**
- * 接口名称
- */
- @Excel(name = "接口名称")
- private String name;
- /**
- * 接口路径
- */
- @Excel(name = "接口路径")
- private String url;
- }
|