Authored by tanling

no message

... ... @@ -2,6 +2,7 @@ package com.yoho.message.dal;
import com.yoho.message.dal.model.MiniappMsgForm;
import org.apache.ibatis.annotations.Param;
public interface IMiniappMsgFormDAO {
int deleteByPrimaryKey(Integer id);
... ... @@ -13,7 +14,7 @@ public interface IMiniappMsgFormDAO {
MiniappMsgForm selectByPrimaryKey(Integer id);
MiniappMsgForm selectLastedAvailabByUid(String uid, String miniappType);
MiniappMsgForm selectLastedAvailabByUid(@Param("uid") String uid, @Param("miniappType") String miniappType);
int updateByPrimaryKeySelective(MiniappMsgForm record);
... ...