admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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;
}