📅  最后修改于: 2022-03-11 14:52:31.048000             🧑  作者: Mango
@Data
@JsonInclude( JsonInclude.Include.NON_NULL )
public class LocationAccountVO
{
private UUID locationId;
@NotEmpty(message = "Email is mandatory.")
@Pattern(regexp = "^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}$", message = "Email be valid")
private String email;
}