liujie
2023-05-26 786466f6accfe836160342c56cdf3415e09bcb38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
 
 
 
}