审查视图

src/main/java/com/sy/service/LandBusListService.java 601 字节
zhangFan authored
1 2 3 4 5 6 7 8 9 10 11 12
package com.sy.service;


import com.sy.model.LandBusinessTypeList;

import java.util.List;

public interface LandBusListService {

    List<LandBusinessTypeList> selectByFrameNoAndType(String frameNo, String flag);

    int updateById(LandBusinessTypeList list);
zhangFan authored
13 14

    int saveList(LandBusinessTypeList list);
zhangFan authored
15 16

    LandBusinessTypeList selectForOne(String frameNo, String barcode, String station, String aisle, String flag);
zhangFan authored
17 18 19 20

    List<LandBusinessTypeList> selectByBarcode(String barcode);

    int updateByBarcode(String barcode);
zhangFan authored
21 22

    List<LandBusinessTypeList> selectMessageId(String messageId);
zhangFan authored
23
}