admin
2024-10-16 62a447d89331aee1feae7724c7616aa1bb2cfe79
fanli/src/main/java/com/yeshi/fanli/service/inter/goods/GoodsSecondClassService.java
@@ -1,25 +1,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;
}
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;
}