|
@@ -0,0 +1,92 @@
|
|
|
|
|
+package com.malk.zhuogao.repository.entity;
|
|
|
|
|
+
|
|
|
|
|
+import com.querydsl.core.types.Path;
|
|
|
|
|
+import com.querydsl.core.types.PathMetadata;
|
|
|
|
|
+import com.querydsl.core.types.dsl.*;
|
|
|
|
|
+
|
|
|
|
|
+import javax.annotation.Generated;
|
|
|
|
|
+
|
|
|
|
|
+import static com.querydsl.core.types.PathMetadataFactory.forVariable;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * QZSDFileRecordPo is a Querydsl query type for ZSDFileRecordPo
|
|
|
|
|
+ */
|
|
|
|
|
+@Generated("com.querydsl.codegen.EntitySerializer")
|
|
|
|
|
+public class QZSDFileRecordPo extends EntityPathBase<ZSDFileRecordPo> {
|
|
|
|
|
+
|
|
|
|
|
+ private static final long serialVersionUID = -1015071517L;
|
|
|
|
|
+
|
|
|
|
|
+ public static final QZSDFileRecordPo zSDFileRecordPo = new QZSDFileRecordPo("zSDFileRecordPo");
|
|
|
|
|
+
|
|
|
|
|
+ public final com.malk.base.QBasePo _super = new com.malk.base.QBasePo(this);
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath actionView = createString("actionView");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath bizId = createString("bizId");
|
|
|
|
|
+
|
|
|
|
|
+ //inherited
|
|
|
|
|
+ public final DateTimePath<java.util.Date> createTime = _super.createTime;
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath docMemberList = createString("docMemberList");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath docPcUrl = createString("docPcUrl");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath docReceiverList = createString("docReceiverList");
|
|
|
|
|
+
|
|
|
|
|
+ public final DateTimePath<java.util.Date> gmtCreateTime = createDateTime("gmtCreateTime", java.util.Date.class);
|
|
|
|
|
+
|
|
|
|
|
+ public final DateTimePath<java.util.Date> gmtModifiedTime = createDateTime("gmtModifiedTime", java.util.Date.class);
|
|
|
|
|
+
|
|
|
|
|
+ //inherited
|
|
|
|
|
+ public final NumberPath<Long> id = _super.id;
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath ipAddress = createString("ipAddress");
|
|
|
|
|
+
|
|
|
|
|
+ public final BooleanPath isWorkSpace = createBoolean("isWorkSpace");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath operateModuleView = createString("operateModuleView");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath orgName = createString("orgName");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath platformView = createString("platformView");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath realName = createString("realName");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath receiverName = createString("receiverName");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath receiverTypeView = createString("receiverTypeView");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath resource = createString("resource");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath resourceExtension = createString("resourceExtension");
|
|
|
|
|
+
|
|
|
|
|
+ public final NumberPath<Long> resourceSize = createNumber("resourceSize", Long.class);
|
|
|
|
|
+
|
|
|
|
|
+ public final NumberPath<Integer> status = createNumber("status", Integer.class);
|
|
|
|
|
+
|
|
|
|
|
+ public final NumberPath<Long> targetSpaceId = createNumber("targetSpaceId", Long.class);
|
|
|
|
|
+
|
|
|
|
|
+ //inherited
|
|
|
|
|
+ public final DateTimePath<java.util.Date> updateTime = _super.updateTime;
|
|
|
|
|
+
|
|
|
|
|
+ public final NumberPath<Long> workSpaceId = createNumber("workSpaceId", Long.class);
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath workSpaceName = createString("workSpaceName");
|
|
|
|
|
+
|
|
|
|
|
+ public final StringPath workSpacePcUrl = createString("workSpacePcUrl");
|
|
|
|
|
+
|
|
|
|
|
+ public QZSDFileRecordPo(String variable) {
|
|
|
|
|
+ super(ZSDFileRecordPo.class, forVariable(variable));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public QZSDFileRecordPo(Path<? extends ZSDFileRecordPo> path) {
|
|
|
|
|
+ super(path.getType(), path.getMetadata());
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public QZSDFileRecordPo(PathMetadata metadata) {
|
|
|
|
|
+ super(ZSDFileRecordPo.class, metadata);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|
|
|
|
|
+
|