package com.agentdriving.user.modular.system.service; import com.agentdriving.user.modular.system.model.Complaint; import com.baomidou.mybatisplus.service.IService; /** * @author zhibing.pu * @date 2023/3/24 16:07 */ public interface IComplaintService extends IService { /** * 投诉反馈 * @param orderId * @param content * @throws Exception */ void feedback(Integer uid, Integer orderId, String content) throws Exception; }