Blame view

src/main/java/com/huaheng/pc/config/points/service/PointsService.java 540 Bytes
pengcheng authored
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
26
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();

}