package com.dy.pipIrrWechat.virtualCard; import com.dy.pipIrrGlobal.pojoSe.SeClient; import com.dy.pipIrrGlobal.voSe.VoClient; import javax.annotation.processing.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", date = "2025-04-07T08:39:21+0800", comments = "version: 1.5.5.Final, compiler: javac, environment: Java 20.0.2 (Oracle Corporation)" ) public class SeClientToVoClientImpl implements SeClientToVoClient { @Override public VoClient po2vo(SeClient po) { if ( po == null ) { return null; } VoClient voClient = new VoClient(); voClient.setName( po.getName() ); voClient.setClientNum( po.getClientnum() ); voClient.setPhone( po.getPhone() ); voClient.setIdCard( po.getIdcard() ); voClient.setAddress( po.getAddress() ); voClient.setOperateDt( po.getOperatedt() ); voClient.setTypeId( po.getTypeid() ); voClient.setArea( po.getArea() ); voClient.setRemarks( po.getRemarks() ); return voClient; } }