LandBusListService.java
601 字节
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);
int saveList(LandBusinessTypeList list);
LandBusinessTypeList selectForOne(String frameNo, String barcode, String station, String aisle, String flag);
List<LandBusinessTypeList> selectByBarcode(String barcode);
int updateByBarcode(String barcode);
List<LandBusinessTypeList> selectMessageId(String messageId);
}