1
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.ruoyi.jarvis.mapper;
|
||||
|
||||
import com.ruoyi.jarvis.domain.WeComShareLinkLogisticsJob;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface WeComShareLinkLogisticsJobMapper {
|
||||
|
||||
int insertWeComShareLinkLogisticsJob(WeComShareLinkLogisticsJob job);
|
||||
|
||||
int updateByJobKey(@Param("jobKey") String jobKey,
|
||||
@Param("status") String status,
|
||||
@Param("lastNote") String lastNote,
|
||||
@Param("scanAttempts") Integer scanAttempts,
|
||||
@Param("waybillNo") String waybillNo);
|
||||
|
||||
WeComShareLinkLogisticsJob selectByJobKey(String jobKey);
|
||||
|
||||
List<WeComShareLinkLogisticsJob> selectWeComShareLinkLogisticsJobList(WeComShareLinkLogisticsJob query);
|
||||
}
|
||||
Reference in New Issue
Block a user