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;
|
|
/**
|
* <p>
|
* 投诉 Mapper 接口
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2023-02-06
|
*/
|
public interface TClaimMapper extends BaseMapper<TClaim> {
|
|
List<TClaimList> getList(@Param("tClaimListPage") Page<TClaimList> tClaimListPage, @Param("sTime") String sTime, @Param("eTime") String eTime, @Param("state") Integer state, @Param("name") String name);
|
|
TClaimVo getClaimInfo(@Param("id") Integer id);
|
|
List<TOrderFile> getOrderFile(@Param("orderId") Long orderId);
|
|
List<TClaimList> getListCompany(@Param("tClaimListPage") Page<TClaimList> tClaimListPage, @Param("sTime") String sTime, @Param("eTime") String eTime, @Param("state") Integer state, @Param("name") String name, @Param("companyId") Integer companyId);
|
|
|
|
}
|