|
@@ -2,6 +2,7 @@ package com.kmall.admin.dao.haikong;
|
|
|
|
|
|
|
|
|
|
import com.kmall.admin.entity.haikong.HaiKongSendOrderInfoDetailRecordEntity;
|
|
import com.kmall.admin.entity.haikong.HaiKongSendOrderInfoDetailRecordEntity;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
@@ -15,9 +16,9 @@ import java.util.Map;
|
|
*/
|
|
*/
|
|
public interface HaiKongSendOrderInfoDetailRecordDao {
|
|
public interface HaiKongSendOrderInfoDetailRecordDao {
|
|
|
|
|
|
- HaiKongSendOrderInfoDetailRecordEntity queryObject(Integer id);
|
|
|
|
|
|
+ HaiKongSendOrderInfoDetailRecordEntity queryObject(@Param("id") Integer id);
|
|
|
|
|
|
- List<HaiKongSendOrderInfoDetailRecordEntity> queryListByOrderId(String orderId);
|
|
|
|
|
|
+ List<HaiKongSendOrderInfoDetailRecordEntity> queryListByOrderId(@Param("orderId") String orderId);
|
|
|
|
|
|
List<HaiKongSendOrderInfoDetailRecordEntity> queryList(Map<String, Object> params);
|
|
List<HaiKongSendOrderInfoDetailRecordEntity> queryList(Map<String, Object> params);
|
|
|
|
|
|
@@ -27,7 +28,7 @@ public interface HaiKongSendOrderInfoDetailRecordDao {
|
|
|
|
|
|
int update(HaiKongSendOrderInfoDetailRecordEntity entity);
|
|
int update(HaiKongSendOrderInfoDetailRecordEntity entity);
|
|
|
|
|
|
- int delete(Integer id);
|
|
|
|
|
|
+ int delete(@Param("id") Integer id);
|
|
|
|
|
|
int deleteBatch(List<Integer> idList);
|
|
int deleteBatch(List<Integer> idList);
|
|
|
|
|