|
@@ -12,19 +12,19 @@ import lombok.NoArgsConstructor;
|
|
|
@Builder
|
|
|
public class AlgorithmExpandAclEntity {
|
|
|
@JsonAlias({"id"})
|
|
|
- private String id;
|
|
|
+ private String id = "默认空值";
|
|
|
@JsonAlias({"algorithmId"})
|
|
|
- private String algorithmId;
|
|
|
+ private String algorithmId = "默认空值";
|
|
|
@JsonAlias({"algorithmName"})
|
|
|
- private String algorithmName;
|
|
|
+ private String algorithmName = "默认空值";
|
|
|
@JsonAlias({"description"})
|
|
|
- private String description;
|
|
|
+ private String description = "默认空值";
|
|
|
@JsonAlias({"algorithmType"})
|
|
|
- private String algorithmType;
|
|
|
- @JsonAlias({"algorithmVersion"})
|
|
|
- private String algorithmVersion;
|
|
|
- @JsonAlias({"team"})
|
|
|
- private String team;
|
|
|
- @JsonAlias({"topic"})
|
|
|
- private String topic;
|
|
|
+ private String algorithmType = "默认空值";
|
|
|
+ @JsonAlias({"algorithmVersion", "evaluationName"})
|
|
|
+ private String algorithmVersion = "默认空值";
|
|
|
+ @JsonAlias({"team", "teamName"})
|
|
|
+ private String team = "默认空值";
|
|
|
+ @JsonAlias({"topic", "match"})
|
|
|
+ private String topic = "默认空值";
|
|
|
}
|