riku
2021-07-12 d978297ae85b2d7453054e616bbbe87bfabe9cbe
src/main/kotlin/com/flightfeather/uav/lightshare/service/CompanyService.kt
@@ -2,9 +2,21 @@
import com.flightfeather.uav.domain.entity.Company
import com.flightfeather.uav.lightshare.bean.BaseResponse
import com.flightfeather.uav.lightshare.bean.DataVo
import com.flightfeather.uav.model.BaseModel
interface CompanyService {
    fun getCompanyInfo(): BaseResponse<List<Company>>
    fun getCompany(cId: String): BaseResponse<Company>
    /**
     * 计算污染源的污染权重影响
     */
    fun getEpwModelResult(
        deviceCode: String,
        startTime: String,
        endTime: String,
        companyIds: List<String>? = null
    ): BaseResponse<MutableMap<String, MutableMap<String, MutableMap<String, BaseModel.ResultCell>>>>
}