Skip to content

Instantly share code, notes, and snippets.

@alexandre-jacquot-ptl
Created May 23, 2021 12:51
Show Gist options
  • Save alexandre-jacquot-ptl/b11a9e5a1b5f3ebacb55d02143ecd5de to your computer and use it in GitHub Desktop.
Save alexandre-jacquot-ptl/b11a9e5a1b5f3ebacb55d02143ecd5de to your computer and use it in GitHub Desktop.
r2dbc ItemUpdateResource
@Data
@Accessors(chain = true)
public class ItemUpdateResource {
@NotBlank
@Size(max=4000)
private String description;
@NotNull
private ItemStatus status;
private Long assigneeId;
private Set<Long> tagIds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment