派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.qxueyou.scc.user.model;
 
import static com.querydsl.core.types.PathMetadataFactory.*;
 
import com.querydsl.core.types.dsl.*;
 
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
 
 
/**
 * QUserReRoleUser is a Querydsl query type for UserReRoleUser
 */
@Generated("com.querydsl.codegen.EntitySerializer")
public class QUserReRoleUser extends EntityPathBase<UserReRoleUser> {
 
    private static final long serialVersionUID = -604616647L;
 
    private static final PathInits INITS = PathInits.DIRECT2;
 
    public static final QUserReRoleUser userReRoleUser = new QUserReRoleUser("userReRoleUser");
 
    public final BooleanPath deleteFlag = createBoolean("deleteFlag");
 
    public final StringPath orgId = createString("orgId");
 
    public final StringPath reId = createString("reId");
 
    public final StringPath remark = createString("remark");
 
    public final StringPath roleId = createString("roleId");
 
    public final QUser user;
 
    public final StringPath userId = createString("userId");
 
    public final QUserRole userRole;
 
    public QUserReRoleUser(String variable) {
        this(UserReRoleUser.class, forVariable(variable), INITS);
    }
 
    public QUserReRoleUser(Path<? extends UserReRoleUser> path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }
 
    public QUserReRoleUser(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }
 
    public QUserReRoleUser(PathMetadata metadata, PathInits inits) {
        this(UserReRoleUser.class, metadata, inits);
    }
 
    public QUserReRoleUser(Class<? extends UserReRoleUser> type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.user = inits.isInitialized("user") ? new QUser(forProperty("user")) : null;
        this.userRole = inits.isInitialized("userRole") ? new QUserRole(forProperty("userRole")) : null;
    }
 
}