Go to most recent revision | Details | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.logistics;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface AreaRepository {
public List<Area> selectByName(String name);
}