IMiniappMsgFormDAO.java 495 Bytes
package com.yoho.message.dal;


import com.yoho.message.dal.model.MiniappMsgForm;

public interface IMiniappMsgFormDAO {
    int deleteByPrimaryKey(Integer id);

    int insert(MiniappMsgForm record);

    int insertSelective(MiniappMsgForm record);

    MiniappMsgForm selectByPrimaryKey(Integer id);


    MiniappMsgForm selectLastedAvailabByUid(String uid, String miniappType);

    int updateByPrimaryKeySelective(MiniappMsgForm record);

    int updateByPrimaryKey(MiniappMsgForm record);
}