yujian
2019-03-27 cdcbed9af813b2a02cdc01eefa24db8bec6b51a9
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
package com.yeshi.fanli.service.inter.goods;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.clazz.GoodsSecondClass;
import com.yeshi.fanli.exception.NotExistObjectException;
 
public interface GoodsSecondClassService {
    
    public List<GoodsSecondClass> getGoodsSecondClassByGoodsClassId(long id);
 
    public List<GoodsSecondClass> getSecondClassList(int i, String key,
            long cid);
 
    public int getCount(long cid, String key);
 
    public void addSecondClass(GoodsSecondClass secondClass);
 
    public void deleteSecondClass(long sid);
 
    public GoodsSecondClass getSecondClass(long scid);
 
    public void updateSecondClass(GoodsSecondClass secondClass) throws NotExistObjectException;
 
}