后端多租户调整

This commit is contained in:
kerwincui
2022-06-03 17:21:51 +08:00
parent 168d987779
commit 4999c2abcb
28 changed files with 80 additions and 175 deletions

View File

@@ -77,8 +77,6 @@ public interface CategoryMapper
* @return 结果
*/
public int productCountInCategorys(Long[] categoryIds);
// 精准查询
List<Category> selectCategoryListAccurate(Category category);
List<IdAndName> selectCategoryShortListAccurate(Category category);
}

View File

@@ -180,5 +180,4 @@ public interface DeviceMapper
*/
List<Device> selectDeviceListAccurate(Device device);
List<DeviceShortOutput> selectDeviceShortListAccurate(Device device);
}

View File

@@ -84,6 +84,4 @@ public interface GroupMapper
*/
public int deleteDeviceGroupByGroupIds(Long[] groupIds);
// 精准查询所有
List<Group> selectGroupListAccurate(Group group);
}

View File

@@ -116,6 +116,4 @@ public interface ProductMapper
* @return 结果
*/
public int thingsCountInProduct(Long productId);
// 精准查询
List<Product> selectProductListAccurate(Product product);
}

View File

@@ -68,6 +68,5 @@ public interface ThingsModelTemplateMapper
* @return 结果
*/
public int deleteThingsModelTemplateByTemplateIds(Long[] templateIds);
// 精准查询
List<ThingsModelTemplate> selectThingsModelTemplateListAccurate(ThingsModelTemplate thingsModelTemplate);
}