| | |
| | | |
| | | import com.dy.common.webUtil.BaseResponse; |
| | | import com.dy.common.webUtil.BaseResponseUtils; |
| | | import com.dy.pipIrrGlobal.daoSe.SeVcRechargeMapper; |
| | | import com.dy.pipIrrGlobal.daoSe.SeVcRefundItemMapper; |
| | | import com.dy.pipIrrGlobal.daoSe.SeVcRefundMapper; |
| | | import com.dy.pipIrrGlobal.daoSe.SeVirtualCardMapper; |
| | | import com.dy.pipIrrGlobal.daoSe.*; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeVcRecharge; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeVcRefund; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeVcRefundItem; |
| | |
| | | import com.dy.pipIrrGlobal.voSe.VoOrders; |
| | | import com.dy.pipIrrGlobal.voSe.VoVirtualCard; |
| | | import com.dy.pipIrrSell.result.SellResultCode; |
| | | import com.dy.pipIrrSell.virtualCard.dto.DtoRegist; |
| | | import com.dy.pipIrrSell.virtualCard.dto.DtoVirtualCard; |
| | | import com.dy.pipIrrSell.virtualCard.enums.LastOperateENUM; |
| | | import com.dy.pipIrrSell.virtualCard.enums.OrderStateENUM; |
| | |
| | | @Autowired |
| | | private SeVcRefundItemMapper seVcRefundItemMapper; |
| | | |
| | | @Autowired |
| | | private SeClientMapper seClientMapper; |
| | | |
| | | /** |
| | | * 获取全部虚拟卡 |
| | | * 根据农户ID获取5级行政区划代码,注册虚拟卡使用 |
| | | * @param clientId 农户ID |
| | | * @return 5级行政区划代码 |
| | | */ |
| | | public Long getAreaCodeById(Long clientId) { |
| | | return seClientMapper.getAreaCodeById(clientId); |
| | | } |
| | | |
| | | /** |
| | | * 获取农户全部虚拟卡 |
| | | * @return |
| | | */ |
| | | public List<VoVirtualCard> getVCs() { |
| | | return seVirtualCardMapper.getVCs(); |
| | | public List<VoVirtualCard> getVCs(Long clientId) { |
| | | return seVirtualCardMapper.getVCs(clientId); |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | /** |
| | | * 根据行政区划串模糊查询虚拟卡编号,注册虚拟卡使用 |
| | | * @param areaCode |
| | | * @return |
| | | */ |
| | | String getVcCardNumOfMax(String areaCode) { |
| | | return seVirtualCardMapper.getVcCardNumOfMax(areaCode); |
| | | } |
| | | |
| | | /** 废弃 |
| | | * 验证农户是否拥有指定名称的虚拟卡 |
| | | * @param po |
| | | * @return |
| | | */ |
| | | public Integer getRecordCountByName(DtoRegist po) { |
| | | return seVirtualCardMapper.getRecordCountByName(po.getClientId(), po.getVcName()); |
| | | } |
| | | //public Integer getRecordCountByName(DtoRegist po) { |
| | | // return seVirtualCardMapper.getRecordCountByName(po.getClientId(), po.getVcName()); |
| | | //} |
| | | |
| | | /** |
| | | * 修改虚拟卡 |