You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
Java
39 lines
1.0 KiB
Java
package com.ruoyi.webapi.mapper;
|
|
|
|
|
|
import com.ruoyi.manager.domain.LedgerInstantBinding;
|
|
import com.ruoyi.webapi.doman.APKVersion;
|
|
import com.ruoyi.webapi.doman.ReceiptSubmitBeen;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by wangh on 2021/4/26-9:32。
|
|
*/
|
|
@Repository
|
|
public interface ApiMapper {
|
|
|
|
String selectEpcByWaybill(@Param("code") String code,@Param("basketId") Long basketId);
|
|
|
|
int insertLedgerBinding(String epc, String code, String user, Long basketId);
|
|
// 查询绑定列表
|
|
List<String> findBindingList(String epc);
|
|
|
|
int deleteBindingList(String epc);
|
|
|
|
int deleteBindingItem(String epc, String code);
|
|
|
|
int delectLocationInfoRemarkByDbCode(String locationCode);
|
|
int blueToothSubmit(String locationCode, String hkCode);
|
|
|
|
List<LedgerInstantBinding> jionSelect(String user);
|
|
|
|
int joinShouSubmit(ReceiptSubmitBeen been);
|
|
|
|
int joinSelectByUser(ReceiptSubmitBeen been);
|
|
|
|
APKVersion getVersion();
|
|
}
|