package com.stylefeng.guns.modular.system.dao; import com.baomidou.mybatisplus.plugins.Page; import com.stylefeng.guns.modular.system.model.TClaim; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.stylefeng.guns.modular.system.model.TClaimList; import com.stylefeng.guns.modular.system.model.TClaimVo; import com.stylefeng.guns.modular.system.model.TOrderFile; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* 投诉 Mapper 接口 *

* * @author stylefeng * @since 2023-02-06 */ public interface TClaimMapper extends BaseMapper { List getList(@Param("tClaimListPage") Page tClaimListPage, @Param("sTime") String sTime, @Param("eTime") String eTime, @Param("state") Integer state, @Param("name") String name); TClaimVo getClaimInfo(@Param("id") Integer id); List getOrderFile(@Param("orderId") Long orderId); List getListCompany(@Param("tClaimListPage") Page tClaimListPage, @Param("sTime") String sTime, @Param("eTime") String eTime, @Param("state") Integer state, @Param("name") String name, @Param("companyId") Integer companyId); }