package cn.flightfeather.supervision.lightshare.service
|
|
import cn.flightfeather.supervision.domain.entity.Complaint
|
import cn.flightfeather.supervision.domain.entity.Punishment
|
|
interface ComplaintService {
|
|
fun getComplaints(userId: String): List<Complaint>
|
|
fun getPunishment(userId: String): List<Punishment>
|
}
|