package com.dy.sso.busi;
|
|
import com.dy.pipIrrGlobal.pojoBa.BaUser;
|
import javax.annotation.processing.Generated;
|
|
@Generated(
|
value = "org.mapstruct.ap.MappingProcessor",
|
date = "2025-03-20T10:47:26+0800",
|
comments = "version: 1.5.5.Final, compiler: javac, environment: Java 20.0.2 (Oracle Corporation)"
|
)
|
public class UserVoMapperImpl implements UserVoMapper {
|
|
@Override
|
public UserVo po2vo(BaUser po) {
|
if ( po == null ) {
|
return null;
|
}
|
|
UserVo.UserVoBuilder userVo = UserVo.builder();
|
|
if ( po.getId() != null ) {
|
userVo.id( String.valueOf( po.getId() ) );
|
}
|
userVo.name( po.getUserName() );
|
userVo.phone( po.getPhone() );
|
|
return userVo.build();
|
}
|
}
|