package com.flightfeather.uav.lightshare.service
|
|
import com.flightfeather.uav.domain.entity.Company
|
import com.flightfeather.uav.lightshare.bean.BaseResponse
|
import com.flightfeather.uav.lightshare.bean.DataVo
|
|
interface CompanyService {
|
|
fun getCompanyInfo(): BaseResponse<List<Company>>
|
}
|