ShortUrlDao.java 183 B

123456789
  1. package com.keao.edu.user.dao;
  2. import com.keao.edu.common.dal.BaseDAO;
  3. import com.keao.edu.user.entity.ShortUrl;
  4. public interface ShortUrlDao extends BaseDAO<Long, ShortUrl> {
  5. }