feiyu02
2025-03-07 db447bb757b51f8d03e62d6ae4f183b4608723ef
src/main/kotlin/com/flightfeather/uav/lightshare/service/CompanyService.kt
@@ -1,7 +1,10 @@
package com.flightfeather.uav.lightshare.service
import com.flightfeather.uav.domain.entity.Assessment
import com.flightfeather.uav.domain.entity.Company
import com.flightfeather.uav.lightshare.bean.AssessmentVo
import com.flightfeather.uav.lightshare.bean.BaseResponse
import com.flightfeather.uav.lightshare.bean.ComplaintVo
import com.flightfeather.uav.model.BaseModel
interface CompanyService {
@@ -19,4 +22,8 @@
        endTime: String,
        companyIds: List<String>? = null
    ): BaseResponse<MutableMap<String, MutableMap<String, MutableMap<String, BaseModel.ResultCell>>>>
    fun getComplaintInfo(): BaseResponse<List<ComplaintVo>>
    fun getAssessment(): BaseResponse<List<AssessmentVo>>
}