Blame view

src/main/java/com/huaheng/pc/config/points/mapper/PointsMapper.java 586 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
package com.huaheng.pc.config.points.mapper;


import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.huaheng.pc.config.points.domain.Points;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * 货架 数据层
 *
 * @author ricard
 * @date 2019-12-26
 */
public interface PointsMapper extends BaseMapper<Points> {

    //修改货架位置信息
    int updatePoints(Points points);

    //修改所有货架的状态为初始状态
    int updateAll();

    int updateIsEmpty(@Param("list") List<String> list, @Param("isEmpty") Integer isEmpty);
}