jinlin
2024-08-06 e9d48b14eb8496737495a659a6f126d88ef7d353
modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/TyProductModelService.java
@@ -42,8 +42,7 @@
    }
    public List<TyProductModel> getProductList() {
        List<TyProductModel> ProductList = baseDao.getProductList();
        return ProductList;
        return baseDao.getProductList();
    }
    public List<TyProductModel> getAllTree() {
@@ -53,7 +52,8 @@
    }
    public Integer getNo(Long pid, String nodeType) {
        if (baseDao.getNo(pid,nodeType) == null){
        Integer no = baseDao.getNo(pid, nodeType);
        if (no == null) {
            return 0;
        }
        return baseDao.getNo(pid,nodeType);