Browse Source

bug提交

chenweida 7 years ago
parent
commit
a0f769b2b1

+ 1 - 1
svr/svr-base/src/main/java/com/yihu/jw/version/dao/ServerVersionLogDao.java

@ -13,6 +13,6 @@ public interface ServerVersionLogDao extends PagingAndSortingRepository<BaseServ
    @Query("from BaseServerVersionLog f where f.name=?1 and f.status=1")
    BaseServerVersionLog findByName(String name);
    @Query("from BaseServerVersionLog f where f.code=?1 and f.status=1")
    @Query("from BaseServerVersionLog f where f.id=?1 and f.status=1")
    BaseServerVersionLog findByCode(String code);
}