Authored by liangyi.chen@yoho.cn

Fix 主键bug

  1 +package com.yoho.datasync.core.base.model.yh_community;
  2 +
  3 +import lombok.Data;
  4 +
  5 +@Data
  6 +public class UserInfo {
  7 +
  8 + private Integer id;
  9 +
  10 + private String nickName;
  11 +
  12 + private String gender;
  13 +
  14 + private String headIco;
  15 +
  16 + private Integer yohoUid;
  17 +
  18 +}