示例#1
0
 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());
 }
示例#2
0
 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;
 }