package com.kmall.admin.dao; import com.kmall.admin.entity.HaiKongResendMsgEntity; import java.util.List; public interface HaiKongResendMsgDao { /** * 保存重发信息 * @param haiKongResendMsgEntity */ public void saveResendMsg(HaiKongResendMsgEntity haiKongResendMsgEntity); /** * 获取需要重推的数据 * @return */ List queryResendMsg(); /** * 修改重推信息 * @param haiKongResendMsgEntity */ void updateResendMsg(HaiKongResendMsgEntity haiKongResendMsgEntity); }