com.mg.common.entity.QSystemParamEntity Maven / Gradle / Ivy
The newest version!
package com.mg.common.entity;
import static com.mysema.query.types.PathMetadataFactory.*;
import com.mysema.query.types.path.*;
import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
/**
* QSystemParamEntity is a Querydsl query type for SystemParamEntity
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QSystemParamEntity extends EntityPathBase {
private static final long serialVersionUID = 1821574546L;
public static final QSystemParamEntity systemParamEntity = new QSystemParamEntity("systemParamEntity");
public final com.mg.framework.entity.model.QBaseEntity _super = new com.mg.framework.entity.model.QBaseEntity(this);
//inherited
public final StringPath createdById = _super.createdById;
//inherited
public final DateTimePath createdDate = _super.createdDate;
//inherited
public final StringPath createdName = _super.createdName;
//inherited
public final StringPath id = _super.id;
public final StringPath paramName = createString("paramName");
public final StringPath paramValue = createString("paramValue");
public final StringPath remark = createString("remark");
public final NumberPath status = createNumber("status", Integer.class);
//inherited
public final StringPath updatedById = _super.updatedById;
//inherited
public final DateTimePath updatedDate = _super.updatedDate;
//inherited
public final StringPath updatedName = _super.updatedName;
public QSystemParamEntity(String variable) {
super(SystemParamEntity.class, forVariable(variable));
}
public QSystemParamEntity(Path extends SystemParamEntity> path) {
super(path.getType(), path.getMetadata());
}
public QSystemParamEntity(PathMetadata> metadata) {
super(SystemParamEntity.class, metadata);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy