DemandInfoMapper.java 2.51 KB
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.mapper;
liqin's avatar
liqin committed
2 3 4

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
liqin's avatar
liqin committed
5
import cn.chnmuseum.party.model.DemandInfo;
liqin's avatar
liqin committed
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * <p>
 * 需求建议信息 Mapper 接口
 * </p>
 *
 * @author 杨智平
 * @since 2018-08-29
 */
public interface DemandInfoMapper extends BaseMapper<DemandInfo> {

    DemandInfo selectOneById(@Param(value = "id") String id);

    List<DemandInfo> selectDemandInfoList(Page<DemandInfo> page,
                                          @Param(value = "lineNumber") String lineNumber,
                                          @Param(value = "content") String content,
                                          @Param(value = "phoneNumber") String phoneNumber,
                                          @Param(value = "startDate") String startDate,
                                          @Param(value = "endDate") String endDate,
                                          @Param(value = "type") Integer type,
                                          @Param(value = "bankBranchId") String bankBranchId,
                                          @Param(value = "callStartDate") String callStartDate,
                                          @Param(value = "callEndDate") String callEndDate,
                                          @Param(value = "roleId") String roleId,
                                          @Param(value = "currentBankId") String currentBankId);

    List<DemandInfo> selectDemandInfoList(
                                          @Param(value = "lineNumber") String lineNumber,
                                          @Param(value = "content") String content,
                                          @Param(value = "phoneNumber") String phoneNumber,
                                          @Param(value = "startDate") String startDate,
                                          @Param(value = "endDate") String endDate,
                                          @Param(value = "type") Integer type,
                                          @Param(value = "bankBranchId") String bankBranchId,
                                          @Param(value = "callStartDate") String callStartDate,
                                          @Param(value = "callEndDate") String callEndDate,
                                          @Param(value = "roleId") String roleId,
                                          @Param(value = "currentBankId") String currentBankId);
}