fix:增加缺失实体类
This commit is contained in:
@@ -37,14 +37,12 @@ import com.rp.spring.jpa.GenericJpaRepositoryImpl;
|
|||||||
* @created Jan 26, 2018 3:57:47 PM
|
* @created Jan 26, 2018 3:57:47 PM
|
||||||
*/
|
*/
|
||||||
@Configuration
|
@Configuration
|
||||||
@ComponentScan({ "cn.stock.**.db.po", "com.stock.**.db.repo","cn.qutaojing.**.po", "cn.qutaojing.**.repo" })
|
@ComponentScan({ "cn.stock.**.db.po", "cn.stock.**.db.repo"})
|
||||||
@EnableJpaRepositories(entityManagerFactoryRef = "entityManagerFactory",
|
@EnableJpaRepositories(entityManagerFactoryRef = "entityManagerFactory",
|
||||||
transactionManagerRef = "transactionManager",
|
transactionManagerRef = "transactionManager",
|
||||||
repositoryBaseClass = GenericJpaRepositoryImpl.class,
|
repositoryBaseClass = GenericJpaRepositoryImpl.class,
|
||||||
repositoryFactoryBeanClass = GenericJpaRepositoryFactoryBean.class,
|
repositoryFactoryBeanClass = GenericJpaRepositoryFactoryBean.class,
|
||||||
basePackages = {
|
basePackages = {
|
||||||
"cn.qutaojing.ipay.infrastructure.db.po", "cn.qutaojing.ipay.infrastructure.db.repo",
|
|
||||||
"cn.stock.trade.infrastructure.db.po", "cn.stock.trade.infrastructure.db.repo",
|
|
||||||
"cn.stock.market.infrastructure.db.po", "cn.stock.market.infrastructure.db.repo"})
|
"cn.stock.market.infrastructure.db.po", "cn.stock.market.infrastructure.db.repo"})
|
||||||
public class MarketDatasourceConfig {
|
public class MarketDatasourceConfig {
|
||||||
@Autowired HibernateProperties hibernateProperties;
|
@Autowired HibernateProperties hibernateProperties;
|
||||||
|
|||||||
@@ -0,0 +1,57 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QCityPO is a Querydsl query type for CityPO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QCityPO extends EntityPathBase<CityPO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1922934307L;
|
||||||
|
|
||||||
|
public static final QCityPO cityPO = new QCityPO("cityPO");
|
||||||
|
|
||||||
|
public final StringPath cityCode = createString("cityCode");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath latitude = createString("latitude");
|
||||||
|
|
||||||
|
public final StringPath levelType = createString("levelType");
|
||||||
|
|
||||||
|
public final StringPath longitude = createString("longitude");
|
||||||
|
|
||||||
|
public final StringPath name = createString("name");
|
||||||
|
|
||||||
|
public final StringPath parentId = createString("parentId");
|
||||||
|
|
||||||
|
public final StringPath path = createString("path");
|
||||||
|
|
||||||
|
public final StringPath remark = createString("remark");
|
||||||
|
|
||||||
|
public final StringPath shortName = createString("shortName");
|
||||||
|
|
||||||
|
public final StringPath zipCode = createString("zipCode");
|
||||||
|
|
||||||
|
public QCityPO(String variable) {
|
||||||
|
super(CityPO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QCityPO(Path<? extends CityPO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QCityPO(PathMetadata metadata) {
|
||||||
|
super(CityPO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QCounter is a Querydsl query type for Counter
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QCounter extends EntityPathBase<Counter> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 690984745L;
|
||||||
|
|
||||||
|
public static final QCounter counter = new QCounter("counter");
|
||||||
|
|
||||||
|
public final NumberPath<Long> count = createNumber("count", Long.class);
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> createTime = createDateTime("createTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath fkId = createString("fkId");
|
||||||
|
|
||||||
|
public final StringPath k = createString("k");
|
||||||
|
|
||||||
|
public final StringPath type = createString("type");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> updateTime = createDateTime("updateTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public QCounter(String variable) {
|
||||||
|
super(Counter.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QCounter(Path<? extends Counter> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QCounter(PathMetadata metadata) {
|
||||||
|
super(Counter.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
41
src/main/java/cn/stock/market/infrastructure/db/po/QDic.java
Normal file
41
src/main/java/cn/stock/market/infrastructure/db/po/QDic.java
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QDic is a Querydsl query type for Dic
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QDic extends EntityPathBase<Dic> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1801755605L;
|
||||||
|
|
||||||
|
public static final QDic dic = new QDic("dic");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> createTime = createDateTime("createTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath k = createString("k");
|
||||||
|
|
||||||
|
public final StringPath val = createString("val");
|
||||||
|
|
||||||
|
public QDic(String variable) {
|
||||||
|
super(Dic.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QDic(Path<? extends Dic> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QDic(PathMetadata metadata) {
|
||||||
|
super(Dic.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QJsonInfoPO is a Querydsl query type for JsonInfoPO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QJsonInfoPO extends EntityPathBase<JsonInfoPO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 537860584L;
|
||||||
|
|
||||||
|
public static final QJsonInfoPO jsonInfoPO = new QJsonInfoPO("jsonInfoPO");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> createAt = createDateTime("createAt", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath ext = createString("ext");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath type = createString("type");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> updateAt = createDateTime("updateAt", java.util.Date.class);
|
||||||
|
|
||||||
|
public QJsonInfoPO(String variable) {
|
||||||
|
super(JsonInfoPO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QJsonInfoPO(Path<? extends JsonInfoPO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QJsonInfoPO(PathMetadata metadata) {
|
||||||
|
super(JsonInfoPO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QRealtimePO is a Querydsl query type for RealtimePO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QRealtimePO extends EntityPathBase<RealtimePO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -677602211L;
|
||||||
|
|
||||||
|
public static final QRealtimePO realtimePO = new QRealtimePO("realtimePO");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> amounts = createNumber("amounts", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<Double> averagePrice = createNumber("averagePrice", Double.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<Double> price = createNumber("price", Double.class);
|
||||||
|
|
||||||
|
public final NumberPath<Double> rates = createNumber("rates", Double.class);
|
||||||
|
|
||||||
|
public final StringPath stockCode = createString("stockCode");
|
||||||
|
|
||||||
|
public final StringPath time = createString("time");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> volumes = createNumber("volumes", Integer.class);
|
||||||
|
|
||||||
|
public QRealtimePO(String variable) {
|
||||||
|
super(RealtimePO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QRealtimePO(Path<? extends RealtimePO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QRealtimePO(PathMetadata metadata) {
|
||||||
|
super(RealtimePO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QSiteArticlePO is a Querydsl query type for SiteArticlePO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QSiteArticlePO extends EntityPathBase<SiteArticlePO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -38085285L;
|
||||||
|
|
||||||
|
public static final QSiteArticlePO siteArticlePO = new QSiteArticlePO("siteArticlePO");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> addTime = createDateTime("addTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath artCnt = createString("artCnt");
|
||||||
|
|
||||||
|
public final StringPath artImg = createString("artImg");
|
||||||
|
|
||||||
|
public final StringPath artSummary = createString("artSummary");
|
||||||
|
|
||||||
|
public final StringPath artTitle = createString("artTitle");
|
||||||
|
|
||||||
|
public final StringPath artType = createString("artType");
|
||||||
|
|
||||||
|
public final StringPath author = createString("author");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> hitTimes = createNumber("hitTimes", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> isShow = createNumber("isShow", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath sourceId = createString("sourceId");
|
||||||
|
|
||||||
|
public final StringPath spiderUrl = createString("spiderUrl");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> views = createNumber("views", Integer.class);
|
||||||
|
|
||||||
|
public QSiteArticlePO(String variable) {
|
||||||
|
super(SiteArticlePO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSiteArticlePO(Path<? extends SiteArticlePO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSiteArticlePO(PathMetadata metadata) {
|
||||||
|
super(SiteArticlePO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QSiteNewsPO is a Querydsl query type for SiteNewsPO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QSiteNewsPO extends EntityPathBase<SiteNewsPO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 525777388L;
|
||||||
|
|
||||||
|
public static final QSiteNewsPO siteNewsPO = new QSiteNewsPO("siteNewsPO");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> addTime = createDateTime("addTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath content = createString("content");
|
||||||
|
|
||||||
|
public final StringPath description = createString("description");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath imgurl = createString("imgurl");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> showTime = createDateTime("showTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath sourceId = createString("sourceId");
|
||||||
|
|
||||||
|
public final StringPath sourceName = createString("sourceName");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> status = createNumber("status", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath title = createString("title");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> type = createNumber("type", Integer.class);
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> updateTime = createDateTime("updateTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> views = createNumber("views", Integer.class);
|
||||||
|
|
||||||
|
public QSiteNewsPO(String variable) {
|
||||||
|
super(SiteNewsPO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSiteNewsPO(Path<? extends SiteNewsPO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSiteNewsPO(PathMetadata metadata) {
|
||||||
|
super(SiteNewsPO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
package cn.stock.market.infrastructure.db.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QSysLogPO is a Querydsl query type for SysLogPO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QSysLogPO extends EntityPathBase<SysLogPO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -2037818903L;
|
||||||
|
|
||||||
|
public static final QSysLogPO sysLogPO = new QSysLogPO("sysLogPO");
|
||||||
|
|
||||||
|
public final StringPath actionType = createString("actionType");
|
||||||
|
|
||||||
|
public final StringPath content = createString("content");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> createAt = createDateTime("createAt", java.util.Date.class);
|
||||||
|
|
||||||
|
public final StringPath ext = createString("ext");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath module = createString("module");
|
||||||
|
|
||||||
|
public final StringPath operatorId = createString("operatorId");
|
||||||
|
|
||||||
|
public final StringPath operatorName = createString("operatorName");
|
||||||
|
|
||||||
|
public final StringPath operatorPhone = createString("operatorPhone");
|
||||||
|
|
||||||
|
public final StringPath roleType = createString("roleType");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> storeId = createNumber("storeId", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath title = createString("title");
|
||||||
|
|
||||||
|
public final StringPath uniqueId = createString("uniqueId");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> updateAt = createDateTime("updateAt", java.util.Date.class);
|
||||||
|
|
||||||
|
public QSysLogPO(String variable) {
|
||||||
|
super(SysLogPO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSysLogPO(Path<? extends SysLogPO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSysLogPO(PathMetadata metadata) {
|
||||||
|
super(SysLogPO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
package cn.stock.market.infrastructure.stockdb.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QSiteSettingPO is a Querydsl query type for SiteSettingPO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QSiteSettingPO extends EntityPathBase<SiteSettingPO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -51441337L;
|
||||||
|
|
||||||
|
public static final QSiteSettingPO siteSettingPO = new QSiteSettingPO("siteSettingPO");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath marketServerList = createString("marketServerList");
|
||||||
|
|
||||||
|
public QSiteSettingPO(String variable) {
|
||||||
|
super(SiteSettingPO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSiteSettingPO(Path<? extends SiteSettingPO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QSiteSettingPO(PathMetadata metadata) {
|
||||||
|
super(SiteSettingPO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
package cn.stock.market.infrastructure.stockdb.po;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QStockPO is a Querydsl query type for StockPO
|
||||||
|
*/
|
||||||
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
||||||
|
public class QStockPO extends EntityPathBase<StockPO> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1246401708L;
|
||||||
|
|
||||||
|
public static final QStockPO stockPO = new QStockPO("stockPO");
|
||||||
|
|
||||||
|
public final DateTimePath<java.util.Date> addTime = createDateTime("addTime", java.util.Date.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> id = createNumber("id", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<java.math.BigDecimal> increaseRatio = createNumber("increaseRatio", java.math.BigDecimal.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> isLock = createNumber("isLock", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<Integer> isShow = createNumber("isShow", Integer.class);
|
||||||
|
|
||||||
|
public final NumberPath<java.math.BigDecimal> spreadRate = createNumber("spreadRate", java.math.BigDecimal.class);
|
||||||
|
|
||||||
|
public final StringPath stockCode = createString("stockCode");
|
||||||
|
|
||||||
|
public final StringPath stockGid = createString("stockGid");
|
||||||
|
|
||||||
|
public final StringPath stockName = createString("stockName");
|
||||||
|
|
||||||
|
public final StringPath stockPlate = createString("stockPlate");
|
||||||
|
|
||||||
|
public final StringPath stockSpell = createString("stockSpell");
|
||||||
|
|
||||||
|
public final NumberPath<Integer> stockState = createNumber("stockState", Integer.class);
|
||||||
|
|
||||||
|
public final StringPath stockType = createString("stockType");
|
||||||
|
|
||||||
|
public QStockPO(String variable) {
|
||||||
|
super(StockPO.class, forVariable(variable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public QStockPO(Path<? extends StockPO> path) {
|
||||||
|
super(path.getType(), path.getMetadata());
|
||||||
|
}
|
||||||
|
|
||||||
|
public QStockPO(PathMetadata metadata) {
|
||||||
|
super(StockPO.class, metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user