package com.usky.vpp.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; import java.time.LocalDateTime; /** * vpp_registration */ @Data @EqualsAndHashCode(callSuper = false) @TableName("vpp_registration") public class VppRegistration implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @TableField("dn_id") private String dnId; @TableField("registration_id") private String registrationId; @TableField("reg_status") private Integer regStatus; @TableField("registered_at") private LocalDateTime registeredAt; @TableField("meta_report_id") private String metaReportId; @TableField("tenant_id") private Integer tenantId; @TableField("create_time") private LocalDateTime createTime; @TableField("update_time") private LocalDateTime updateTime; @TableField("created_by") private String createdBy; @TableField("updated_by") private String updatedBy; @TableField("delete_flag") private Integer deleteFlag; @TableField("deleted_at") private LocalDateTime deletedAt; }