| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.hr.vo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- /**
- * 接口表;IpInterface数据表的PO对象
- * @author : longhoo
- * @date : 2025-10-10
- */
- @Data
- public class IpInterfaceVO implements Serializable,Cloneable{
- /** 主键,; */
- private Long id ;
- /** 接口名称,名称唯一,; */
- private String interfaceName ;
- /** 接口厂商,; */
- private String manufacturer ;
- /** 备注,; */
- private String remark ;
- /** 状态,normal 有效,disable 禁用,delete 删除,; */
- private String status ;
- /** 接口配置,JSON格式的配置文件,存放接口参数,; */
- private String interfaceConfig ;
- /** 创建时间,; */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private LocalDateTime addTime ;
- /** 更新时间,; */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private LocalDateTime updateTime ;
- /** 创建人id,; */
- private Long addUserId ;
- /** 更新人id,; */
- private Long updateUserId ;
- /** 创建人姓名,; */
- private String addUserName ;
- /** 更新人姓名,; */
- private String updateUserName ;
- }
|