修正分类、性质、标签字典只查询非叶子节点的错误
Signed-off-by: zhangwei <zhangwei@intranet.com>
This commit is contained in:
@@ -224,7 +224,7 @@ public class ServiceDictInfoService extends BaseService{
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public List<ServiceDictInfo> findFlDict() {
|
||||
return serviceDictInfoDao.findItemDict(Constants.ITEM_TYPE_FL,Constants.VALID_YES);
|
||||
return serviceDictInfoDao.findItemDict(Constants.ITEM_TYPE_FL,Constants.VALID_YES,null);
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -236,7 +236,7 @@ public class ServiceDictInfoService extends BaseService{
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public List<ServiceDictInfo> findAllFlDict() {
|
||||
return serviceDictInfoDao.findAllItemDict(Constants.ITEM_TYPE_FL);
|
||||
return serviceDictInfoDao.findAllItemDictByItemType(Constants.ITEM_TYPE_FL,null);
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -248,7 +248,7 @@ public class ServiceDictInfoService extends BaseService{
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public List<ServiceDictInfo> findXzDict() {
|
||||
return serviceDictInfoDao.findItemDict(Constants.ITEM_TYPE_XZ,Constants.VALID_YES);
|
||||
return serviceDictInfoDao.findItemDict(Constants.ITEM_TYPE_XZ,Constants.VALID_YES,null);
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -260,7 +260,7 @@ public class ServiceDictInfoService extends BaseService{
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public List<ServiceDictInfo> findAllXzDict() {
|
||||
return serviceDictInfoDao.findAllItemDict(Constants.ITEM_TYPE_XZ);
|
||||
return serviceDictInfoDao.findAllItemDictByItemType(Constants.ITEM_TYPE_XZ,null);
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -272,7 +272,7 @@ public class ServiceDictInfoService extends BaseService{
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public List<ServiceDictInfo> findLableDict() {
|
||||
return serviceDictInfoDao.findItemDict(Constants.ITEM_TYPE_LABEL,Constants.VALID_YES);
|
||||
return serviceDictInfoDao.findItemDict(Constants.ITEM_TYPE_LABEL,Constants.VALID_YES,null);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -285,7 +285,7 @@ public class ServiceDictInfoService extends BaseService{
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public List<ServiceDictInfo> findAllLableDict() {
|
||||
return serviceDictInfoDao.findAllItemDict(Constants.ITEM_TYPE_LABEL);
|
||||
return serviceDictInfoDao.findAllItemDictByItemType(Constants.ITEM_TYPE_LABEL,null);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user