-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yingjian Wu
committed
Jul 5, 2024
1 parent
c91c57e
commit 084e314
Showing
8 changed files
with
160 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
metacat-common/src/main/java/com/netflix/metacat/common/dto/ParentInfoDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.netflix.metacat.common.dto; | ||
|
||
import io.swagger.annotations.ApiModelProperty; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.NoArgsConstructor; | ||
|
||
/** | ||
* ParentInfo dto information. | ||
*/ | ||
@SuppressWarnings("unused") | ||
@Data | ||
@EqualsAndHashCode(callSuper = false) | ||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class ParentInfoDto extends BaseDto { | ||
private static final long serialVersionUID = 8121239864203088788L; | ||
/* Name of the parent */ | ||
@ApiModelProperty(value = "name of the child") | ||
private String name; | ||
/* Type of the relation */ | ||
@ApiModelProperty(value = "type of the relation") | ||
private String relationType; | ||
/* uuid of the table */ | ||
@ApiModelProperty(value = "uuid of the table") | ||
private String uuid; | ||
} |
Oops, something went wrong.