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.
21 lines
478 B
21 lines
478 B
package dto; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Builder; |
|
import lombok.Getter; |
|
import lombok.ToString; |
|
import lombok.extern.jackson.Jacksonized; |
|
import java.io.Serializable; |
|
|
|
@AllArgsConstructor |
|
@Builder |
|
@Getter |
|
@ToString |
|
@Jacksonized |
|
public class PncObj implements Serializable { |
|
|
|
public static final String SQL = "INSERT INTO pncscans (build_system_type, build_id) VALUES (? ?)"; |
|
|
|
private final String buildSystemType; |
|
private final String buildId; |
|
} |