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.
38 lines
876 B
Java
38 lines
876 B
Java
|
3 months ago
|
package com.ruoyi.webapi.mapper;
|
||
|
|
|
||
|
|
|
||
|
|
import com.ruoyi.manager.domain.LedgerInstantBinding;
|
||
|
|
import com.ruoyi.webapi.doman.JoinSubmitBeen;
|
||
|
|
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(String code);
|
||
|
|
|
||
|
|
int insertLedgerBinding(String epc, String code,String user);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
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(JoinSubmitBeen been);
|
||
|
|
|
||
|
|
int joinSelectByUser(JoinSubmitBeen been);
|
||
|
|
}
|