Helius
2021-01-25 89e17a219d8a6d208e4cb32a43e90abb89b3c93b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.matrix.system.hive.service;
 
import java.util.List;
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.bean.ShoppingGoodsCategory;
import com.matrix.system.hive.plugin.util.BaseServices;
/**
 *
 * @date 2016-07-30 09:54
 */
public interface ShoppingGoodsCategoryService  extends BaseServices<ShoppingGoodsCategory>{
    
    /**
     * 新增ShoppingGoodsCategory
     * 
     */
    public int add(ShoppingGoodsCategory shoppingGoodsCategory);
       
       /**
     * 更新ShoppingGoodsCategory
     * 
     */
    public int modify(ShoppingGoodsCategory shoppingGoodsCategory);
    
    /**
     * 批量删除ShoppingGoodsCategory
     * 
     */
    public int remove(List<Long> list);
 
    /**
     * 根据id删除ShoppingGoodsCategory
     * 
     */
    public int removeById(Long id);
    
    /**
     * 分页查询ShoppingGoodsCategory
     * 
     */
    public List<ShoppingGoodsCategory> findInPage(ShoppingGoodsCategory shoppingGoodsCategory, PaginationVO pageVo);
 
    /**
     * 根据对象查询ShoppingGoodsCategory
     * 
     */
    public List<ShoppingGoodsCategory> findByModel(ShoppingGoodsCategory shoppingGoodsCategory);
    
    /**
     * 统计记录数ShoppingGoodsCategory
     * 
     */
    public int  findTotal(ShoppingGoodsCategory shoppingGoodsCategory);
    
    /**
     * 根据id查询ShoppingGoodsCategory
     * 
     */
    public ShoppingGoodsCategory  findById(Long id);
 
       
    List<ShoppingGoodsCategory> findChildNodesByName(ShoppingGoodsCategory shoppingGoodsCategory);
  
}