| | |
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
|
| | | import com.yeshi.fanli.exception.GoodsClassException;
|
| | | import com.yeshi.fanli.exception.goods.GoodsClassException;
|
| | |
|
| | | public interface GoodsClassService {
|
| | |
|
| | |
| | | public void removePicture(GoodsClass record) throws Exception;
|
| | |
|
| | |
|
| | | public List<GoodsClass> listquery() throws Exception;
|
| | | public List<GoodsClass> listquery(Integer sex) throws Exception;
|
| | |
|
| | |
|
| | |
|
| | |
| | | public void updateOrder(Long id, Integer moveType) throws GoodsClassException;
|
| | |
|
| | |
|
| | | /**
|
| | | * 状态切换
|
| | | * @param id
|
| | | * @throws GoodsClassException
|
| | | */
|
| | | public void switchState(Long id) throws GoodsClassException;
|
| | |
|
| | |
|
| | | }
|