|
|
@ -37,43 +37,27 @@ import com.yxt.anrui.riskcenter.api.loanhomevisitinvestigateotherpeo.LoanHomevis |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* Project: anrui-riskcenter(家访考察) <br/> |
|
|
|
* File: LoanHomevisitInvestigateOtherpeoMapper.java <br/> |
|
|
|
* Class: com.yxt.anrui.riskcenter.biz.loanhomevisitinvestigateotherpeo.LoanHomevisitInvestigateOtherpeoMapper <br/> |
|
|
|
* Description: 家访考察-其他人员. <br/> |
|
|
|
* Copyright: Copyright (c) 2011 <br/> |
|
|
|
* Company: https://gitee.com/liuzp315 <br/>
|
|
|
|
* Makedate: 2023-08-10 15:13:46 <br/> |
|
|
|
* |
|
|
|
* @author liupopo |
|
|
|
* @version 1.0 |
|
|
|
* @since 1.0 |
|
|
|
*/ |
|
|
|
@Mapper |
|
|
|
public interface LoanHomevisitInvestigateOtherpeoMapper extends BaseMapper<LoanHomevisitInvestigateOtherpeo> { |
|
|
|
|
|
|
|
//@Update("update loan_homevisit_investigate_otherpeo set name=#{msg} where id=#{id}")
|
|
|
|
//IPage<LoanHomevisitInvestigateOtherpeoVo> voPage(IPage<LoanHomevisitInvestigateOtherpeo> page, @Param(Constants.WRAPPER) QueryWrapper<LoanHomevisitInvestigateOtherpeo> qw);
|
|
|
|
|
|
|
|
IPage<LoanHomevisitInvestigateOtherpeoVo> selectPageVo(IPage<LoanHomevisitInvestigateOtherpeo> page, @Param(Constants.WRAPPER) Wrapper<LoanHomevisitInvestigateOtherpeo> qw); |
|
|
|
|
|
|
|
List<LoanHomevisitInvestigateOtherpeoVo> selectListAllVo(@Param(Constants.WRAPPER) Wrapper<LoanHomevisitInvestigateOtherpeo> qw); |
|
|
|
|
|
|
|
@Select("select * from loan_homevisit_investigate_otherpeo") |
|
|
|
List<LoanHomevisitInvestigateOtherpeoVo> selectListVo(); |
|
|
|
IPage<LoanHomevisitInvestigateOtherpeoVo> selectPageVo(IPage<LoanHomevisitInvestigateOtherpeo> page, @Param(Constants.WRAPPER) Wrapper<LoanHomevisitInvestigateOtherpeo> qw); |
|
|
|
|
|
|
|
List<LoanHomevisitInvestigateOtherpeoVo> selectListAllVo(@Param(Constants.WRAPPER) Wrapper<LoanHomevisitInvestigateOtherpeo> qw); |
|
|
|
|
|
|
|
@Select("select * from loan_homevisit_investigate_otherpeo") |
|
|
|
List<LoanHomevisitInvestigateOtherpeoVo> selectListVo(); |
|
|
|
|
|
|
|
List<LoanHomeVisitInvestigateInitOtherPeoVo> selByMainSid(String sid); |
|
|
|
|
|
|
|
@Delete("DELETE FROM loan_homevisit_investigate_otherpeo WHERE mainSid = #{sid}") |
|
|
|
void delByMainSid(String sid); |
|
|
|
@Delete("DELETE FROM loan_homevisit_investigate_otherpeo WHERE mainSid = #{sid}") |
|
|
|
void delByMainSid(String sid); |
|
|
|
|
|
|
|
@Update("update loan_homevisit_investigate_otherpeo set mainSid = #{mainSid} where sid = #{sid}") |
|
|
|
void updateMainSid(@Param("sid") String sid,@Param("mainSid") String mainSid); |
|
|
|
@Update("update loan_homevisit_investigate_otherpeo set mainSid = #{mainSid} where sid = #{sid}") |
|
|
|
void updateMainSid(@Param("sid") String sid, @Param("mainSid") String mainSid); |
|
|
|
|
|
|
|
@Select("select * from loan_homevisit_investigate_otherpeo where mainSid = #{mainSid} and saleVehSid = #{saleVehSid}") |
|
|
|
LoanHomevisitInvestigateOtherpeoDetailsVo selByMainSidAndSaleVehSid(@Param("mainSid") String mainSid,@Param("saleVehSid") String saleVehSid); |
|
|
|
@Select("select * from loan_homevisit_investigate_otherpeo where mainSid = #{mainSid} and saleVehSid = #{saleVehSid} and isCs = 1") |
|
|
|
LoanHomevisitInvestigateOtherpeoDetailsVo selByMainSidAndSaleVehSid(@Param("mainSid") String mainSid, @Param("saleVehSid") String saleVehSid); |
|
|
|
|
|
|
|
@Delete("DELETE FROM loan_homevisit_investigate_otherpeo WHERE saleVehSid = #{saleVehSid}") |
|
|
|
@Delete("DELETE FROM loan_homevisit_investigate_otherpeo WHERE saleVehSid = #{saleVehSid}") |
|
|
|
void delBySaleVehSid(String saleVehSid); |
|
|
|
} |