101captain
2021-12-23 5a8a90c095280fbd2106869ecd2bad10e01a57a6
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActMessageBackDAO.java
@@ -6,8 +6,9 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.panzhihua.service_community.model.dos.ComActMessageBackDO;
@Mapper
public interface ComActMessageBackDAO extends BaseMapper<ComActMessageBackDO> {
   @Update("delete from com_act_message_back u where u.msg_id=#{msgId}")
    void deleteMsgBackByMsgId(@Param("msgId")Long msgId);
    @Update("delete from com_act_message_back where msg_id=#{msgId}")
    void deleteMsgBackByMsgId(@Param("msgId") Long msgId);
}