public UserClientInfo(UserClientInfoDTO userClientInfoDTO) { this.setId(userClientInfoDTO.getId()); this.setShopId(userClientInfoDTO.getShopId()); this.setUserNo(userClientInfoDTO.getUserNo()); this.setBrowser(userClientInfoDTO.getBrowser()); this.setOs(userClientInfoDTO.getOs()); this.setCpu(userClientInfoDTO.getCpu()); this.setFinger(userClientInfoDTO.getFinger()); }
public UserClientInfo fromDTO(UserClientInfoDTO userClientInfoDTO) { this.setId(userClientInfoDTO.getId()); this.setShopId(userClientInfoDTO.getShopId()); this.setUserNo(userClientInfoDTO.getUserNo()); this.setBrowser(userClientInfoDTO.getBrowser()); this.setOs(userClientInfoDTO.getOs()); this.setCpu(userClientInfoDTO.getCpu()); this.setFinger(userClientInfoDTO.getFinger()); this.setScore(userClientInfoDTO.getScore()); return this; }