mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-19 09:25:54 +08:00
zhaothird
This commit is contained in:
@@ -77,4 +77,8 @@ public interface CategoryMapper
|
||||
* @return 结果
|
||||
*/
|
||||
public int productCountInCategorys(Long[] categoryIds);
|
||||
// 精准查询
|
||||
List<Category> selectCategoryList1(Category category);
|
||||
|
||||
List<IdAndName> selectCategoryShortList1(Category category);
|
||||
}
|
||||
|
||||
@@ -161,6 +161,10 @@ public interface DeviceMapper
|
||||
* @return
|
||||
*/
|
||||
public int deleteDeviceGroupByDeviceIds(Long[] deviceIds);
|
||||
// 查询简短设备列表
|
||||
// 查询所有简短设备列表
|
||||
List<DeviceAllShortOutput> selectAllDeviceShortList1(String userName);
|
||||
//精准查询
|
||||
List<Device> selectDeviceList1(Device device);
|
||||
|
||||
List<DeviceShortOutput> selectDeviceShortList1(Device device);
|
||||
}
|
||||
|
||||
@@ -83,4 +83,7 @@ public interface GroupMapper
|
||||
* @return
|
||||
*/
|
||||
public int deleteDeviceGroupByGroupIds(Long[] groupIds);
|
||||
|
||||
// 精准查询所有
|
||||
List<Group> selectGroupList1(Group group);
|
||||
}
|
||||
|
||||
@@ -116,4 +116,6 @@ public interface ProductMapper
|
||||
* @return 结果
|
||||
*/
|
||||
public int thingsCountInProduct(Long productId);
|
||||
// 精准查询
|
||||
List<Product> selectProductList1(Product product);
|
||||
}
|
||||
|
||||
@@ -68,4 +68,6 @@ public interface ThingsModelTemplateMapper
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteThingsModelTemplateByTemplateIds(Long[] templateIds);
|
||||
// 精准查询
|
||||
List<ThingsModelTemplate> selectThingsModelTemplateList1(ThingsModelTemplate thingsModelTemplate);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user