package me.notify.notifyServer.dao;

import org.apache.ibatis.annotations.Mapper;

import java.util.List;


@Mapper
public interface RegDao {

    /**
     * 保存regID
     *
     * @param regID
     */
    void saveRegID(String regID);


    /**
     * 查询regID
     *
     * @return
     */
    List<String> selectRegID();
}
