| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeVirtualCard; |
| | | import com.dy.pipIrrGlobal.voSe.VoVcRecharge; |
| | | import com.dy.pipIrrGlobal.voSe.VoVirtualCard; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | |
| | | VoVirtualCard getVcById(@Param("vcId") Long vcId); |
| | | |
| | | /** |
| | | * 根据虚拟卡编号获取虚拟卡 |
| | | * @param vcNum |
| | | * @return |
| | | */ |
| | | SeVirtualCard getVcCardByNum(@Param("vcNum") String vcNum); |
| | | |
| | | /** |
| | | * 根据虚拟卡编号获取虚拟卡ID |
| | | * @param vcNum |
| | | * @return |
| | |
| | | * @return |
| | | */ |
| | | String getVcCardNumOfMax(@Param("areaCode") String areaCode); |
| | | |
| | | /** |
| | | * 一个取水口上占用的虚拟卡状态变成不占用 |
| | | * @param intakeId |
| | | * @return |
| | | */ |
| | | void updateVcCardNoUseStateByIntakeId(@Param("intakeId")Long intakeId) ; |
| | | |
| | | /** |
| | | * 获取虚拟卡充值记录 |
| | | * @return |
| | | */ |
| | | List<VoVcRecharge> getVcRechargeRecords(Map<?, ?> params); |
| | | |
| | | /** |
| | | * 获取虚拟卡充值记录数 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | Long getRechargeRecordCount(Map<?, ?> params); |
| | | } |