package com.example.demo.sevice; import com.example.demo.domain.work.One; import com.example.demo.domain.work.Three; import com.example.demo.domain.work.Two; import org.springframework.web.bind.annotation.RequestBody; import java.util.List; public interface OneService { One getOne(String token, List areas) throws Exception; Two getTwo(String token,List areas) throws Exception; Three getThree(String token,List areas) throws Exception; }