SysSmsDao.java 273 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package io.hmit.modules.message.dao; import io.hmit.common.dao.BaseDao; import io.hmit.modules.message.entity.SysSmsEntity; import org.apache.ibatis.annotations.Mapper; /** * 短信 * * @author */ @Mapper public interface SysSmsDao extends BaseDao<SysSmsEntity> { }