Skip to content

Commit

Permalink
fix_alert_serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
zackyoungh committed Dec 6, 2024
1 parent 75513e5 commit d61f831
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

@Data
@NoArgsConstructor
@AllArgsConstructor(onConstructor = @__(@JsonCreator))
@AllArgsConstructor
public class DingTalkParams {

private String webhook = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

@Data
@NoArgsConstructor
@AllArgsConstructor(onConstructor = @__(@JsonCreator))
@AllArgsConstructor
public class EmailParams {

private List<String> receivers = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor(onConstructor = @__(@JsonCreator))
@NoArgsConstructor
@AllArgsConstructor
public class FeiShuParams {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor(onConstructor = @__(@JsonCreator))
@NoArgsConstructor
@AllArgsConstructor
public class HttpParams {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor(onConstructor = @__(@JsonCreator))
@NoArgsConstructor
@AllArgsConstructor
public class WechatParams {

Expand Down

0 comments on commit d61f831

Please sign in to comment.