@@ -18,6 +18,8 @@ public class QProblemSet extends EntityPathBase<ProblemSet> {
1818
1919 private static final long serialVersionUID = -499971265L ;
2020
21+ private static final PathInits INITS = PathInits .DIRECT2 ;
22+
2123 public static final QProblemSet problemSet = new QProblemSet ("problemSet" );
2224
2325 public final com .moplus .moplus_server .global .common .QBaseEntity _super = new com .moplus .moplus_server .global .common .QBaseEntity (this );
@@ -31,23 +33,32 @@ public class QProblemSet extends EntityPathBase<ProblemSet> {
3133
3234 public final BooleanPath isDeleted = createBoolean ("isDeleted" );
3335
34- public final StringPath name = createString ("name" );
35-
3636 public final ListPath <com .moplus .moplus_server .domain .problem .domain .problem .ProblemId , com .moplus .moplus_server .domain .problem .domain .problem .QProblemId > problemIds = this .<com .moplus .moplus_server .domain .problem .domain .problem .ProblemId , com .moplus .moplus_server .domain .problem .domain .problem .QProblemId >createList ("problemIds" , com .moplus .moplus_server .domain .problem .domain .problem .ProblemId .class , com .moplus .moplus_server .domain .problem .domain .problem .QProblemId .class , PathInits .DIRECT2 );
3737
38+ public final QTitle title ;
39+
3840 //inherited
3941 public final DateTimePath <java .time .LocalDateTime > updatedDate = _super .updatedDate ;
4042
4143 public QProblemSet (String variable ) {
42- super (ProblemSet .class , forVariable (variable ));
44+ this (ProblemSet .class , forVariable (variable ), INITS );
4345 }
4446
4547 public QProblemSet (Path <? extends ProblemSet > path ) {
46- super (path .getType (), path .getMetadata ());
48+ this (path .getType (), path .getMetadata (), PathInits . getFor ( path . getMetadata (), INITS ));
4749 }
4850
4951 public QProblemSet (PathMetadata metadata ) {
50- super (ProblemSet .class , metadata );
52+ this (metadata , PathInits .getFor (metadata , INITS ));
53+ }
54+
55+ public QProblemSet (PathMetadata metadata , PathInits inits ) {
56+ this (ProblemSet .class , metadata , inits );
57+ }
58+
59+ public QProblemSet (Class <? extends ProblemSet > type , PathMetadata metadata , PathInits inits ) {
60+ super (type , metadata , inits );
61+ this .title = inits .isInitialized ("title" ) ? new QTitle (forProperty ("title" )) : null ;
5162 }
5263
5364}
0 commit comments