package com.huaheng.pc.config.points.service; import com.baomidou.mybatisplus.extension.service.IService; import com.huaheng.framework.web.domain.AjaxResult; import com.huaheng.pc.config.points.domain.Points; import java.util.List; import java.util.Map; /** * 货架 服务层 * * @author ricard * @date 2019-02-26 */ public interface PointsService extends IService<Points> { //修改所有货架的状态为初始状态 int updateAll(); //检查货架是否是空货架,并修改 AjaxResult detectShelf(); }