-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
290 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
querydsl-jpa/src/test/java/com/querydsl/jpa/domain/sql/SEmployeeJobfunctions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package com.querydsl.jpa.domain.sql; | ||
|
||
import static com.querydsl.core.types.PathMetadataFactory.*; | ||
|
||
import com.querydsl.core.types.Path; | ||
import com.querydsl.core.types.PathMetadata; | ||
import com.querydsl.core.types.dsl.*; | ||
import javax.annotation.processing.Generated; | ||
|
||
/** SEmployeeJobfunctions is a Querydsl query type for SEmployeeJobfunctions */ | ||
@Generated("com.querydsl.sql.codegen.MetaDataSerializer") | ||
public class SEmployeeJobfunctions | ||
extends com.querydsl.sql.RelationalPathBase<SEmployeeJobfunctions> { | ||
|
||
private static final long serialVersionUID = 2101800660; | ||
|
||
public static final SEmployeeJobfunctions employeeJobfunctions = | ||
new SEmployeeJobfunctions("employee_jobfunctions"); | ||
|
||
public SEmployeeJobfunctions(String variable) { | ||
super(SEmployeeJobfunctions.class, forVariable(variable), "null", "employee_jobfunctions"); | ||
addMetadata(); | ||
} | ||
|
||
public SEmployeeJobfunctions(String variable, String schema, String table) { | ||
super(SEmployeeJobfunctions.class, forVariable(variable), schema, table); | ||
addMetadata(); | ||
} | ||
|
||
public SEmployeeJobfunctions(String variable, String schema) { | ||
super(SEmployeeJobfunctions.class, forVariable(variable), schema, "employee_jobfunctions"); | ||
addMetadata(); | ||
} | ||
|
||
public SEmployeeJobfunctions(Path<? extends SEmployeeJobfunctions> path) { | ||
super(path.getType(), path.getMetadata(), "null", "employee_jobfunctions"); | ||
addMetadata(); | ||
} | ||
|
||
public SEmployeeJobfunctions(PathMetadata metadata) { | ||
super(SEmployeeJobfunctions.class, metadata, "null", "employee_jobfunctions"); | ||
addMetadata(); | ||
} | ||
|
||
public void addMetadata() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.