Blame view

src/main/java/com/huaheng/api/ACS/service/PointsService.java 391 Bytes
游杰 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.huaheng.api.ACS.service;


import com.huaheng.api.ACS.domain.Points;

/**
 * 货架 服务层
 *
 * @author ricard
 * @date 2019-02-26
 */

public interface PointsService {

    //抽象查找货架信息
    Points selectEntity(String code);

    //查找货架信息
    Points selectFirstEntity(Points points);

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