|
|
@ -34,6 +34,7 @@ import org.apache.ibatis.annotations.Param; |
|
|
|
import org.apache.ibatis.annotations.Select; |
|
|
|
import com.yxt.anrui.riskcenter.api.loancapitalcreditresult.LoanCapitalCreditResult; |
|
|
|
import com.yxt.anrui.riskcenter.api.loancapitalcreditresult.LoanCapitalCreditResultVo; |
|
|
|
import org.apache.ibatis.annotations.Update; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -53,13 +54,17 @@ import java.util.List; |
|
|
|
@Mapper |
|
|
|
public interface LoanCapitalCreditResultMapper extends BaseMapper<LoanCapitalCreditResult> { |
|
|
|
|
|
|
|
//@Update("update loan_capital_credit_result set name=#{msg} where id=#{id}")
|
|
|
|
//IPage<LoanCapitalCreditResultVo> voPage(IPage<LoanCapitalCreditResult> page, @Param(Constants.WRAPPER) QueryWrapper<LoanCapitalCreditResult> qw);
|
|
|
|
//@Update("update loan_capital_credit_result set name=#{msg} where id=#{id}")
|
|
|
|
//IPage<LoanCapitalCreditResultVo> voPage(IPage<LoanCapitalCreditResult> page, @Param(Constants.WRAPPER) QueryWrapper<LoanCapitalCreditResult> qw);
|
|
|
|
|
|
|
|
IPage<LoanCapitalCreditResultVo> selectPageVo(IPage<LoanCapitalCreditResult> page, @Param(Constants.WRAPPER) Wrapper<LoanCapitalCreditResult> qw); |
|
|
|
IPage<LoanCapitalCreditResultVo> selectPageVo(IPage<LoanCapitalCreditResult> page, @Param(Constants.WRAPPER) Wrapper<LoanCapitalCreditResult> qw); |
|
|
|
|
|
|
|
List<LoanCapitalCreditResultVo> selectListAllVo(@Param(Constants.WRAPPER) Wrapper<LoanCapitalCreditResult> qw); |
|
|
|
List<LoanCapitalCreditResultVo> selectListAllVo(@Param(Constants.WRAPPER) Wrapper<LoanCapitalCreditResult> qw); |
|
|
|
|
|
|
|
@Select("select * from loan_capital_credit_result") |
|
|
|
List<LoanCapitalCreditResultVo> selectListVo(); |
|
|
|
|
|
|
|
@Update("update loan_capital_credit_result set capCarefulDate = #{capCarefulDate},capCarefulResult = #{capCarefulResult},state = '2' where sid = #{dtoSid") |
|
|
|
void updateStateAndDateResult(@Param("dtoSid") String dtoSid, @Param("capCarefulDate") String capCarefulDate, @Param("capCarefulResult") String capCarefulResult); |
|
|
|
|
|
|
|
@Select("select * from loan_capital_credit_result") |
|
|
|
List<LoanCapitalCreditResultVo> selectListVo(); |
|
|
|
} |