You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
695 B
28 lines
695 B
package dto; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Builder; |
|
import lombok.Getter; |
|
import lombok.ToString; |
|
import lombok.extern.jackson.Jacksonized; |
|
import java.io.Serializable; |
|
|
|
import java.io.Serializable; |
|
|
|
@AllArgsConstructor |
|
@Builder |
|
@Getter |
|
@ToString |
|
@Jacksonized |
|
public class ScanObj implements Serializable { |
|
|
|
public static final String SQL = "INSERT INTO scans " + |
|
"(scan_id, offering_id, event_id, is_managed_service, component_list) " + |
|
"VALUES (? ? ? ? ?)"; |
|
|
|
private final String scanId; |
|
private final String productId; |
|
private final String eventId; |
|
private final String isManagedService; |
|
private final String componentList; |
|
} |