Commit 7b847770 by kenzo
parents 9bb41ca5 ffc3a915
package com.cnooc.expert.external.expert.model.response;
import com.cnooc.expert.system.entity.pojo.CurrentUserInfo;
import lombok.Data;
import java.math.BigDecimal;
......@@ -8,6 +9,8 @@ import java.util.List;
@Data
public class ExpertInfoResp {
private CurrentUserInfo userInfo;
private String shenFenZheng;
private Long subjectId;
......
package com.cnooc.expert.system.entity.pojo;
import lombok.Data;
@Data
public class CurrentUserInfo {
private Long userId;
private Long accId;
private Integer accType;
private Long personId;
private String name;
private String code;
private SubjectInfo subjectInfo;
}
package com.cnooc.expert.system.entity.pojo;
import lombok.Data;
@Data
public class SubjectInfo {
private Long id;
private String name;
private String code;
private Integer subjectType;
private String signCode;
}
......@@ -37,6 +37,12 @@ public class ZhuanJiaUser {
private String adAccount;
private String tuiKuYuanYin;
private String fuJianGuids;
private Short shenPiZhuangTai;
private CurrentUserInfo userInfo;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment