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
717 B

package dto;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.ToString;
import lombok.extern.jackson.Jacksonized;
import java.io.Serializable;
@ToString
@Getter
@AllArgsConstructor
@Jacksonized
@Builder
public class BrewObj implements Serializable {
public static final String SQL = "INSERT INTO brewscans " +
"(buildSystemType, brewId, brewNVR, pncId, artifactType, fileName, builtfromSource)" +
"VALUES (? ? ? ? ? ? ?)";
private String buildSystemType;
private String brewId;
private String brewNvr;
private String pncId;
private String artifactType;
private String fileName;
private Boolean builtFromSource;
}