删除corpId

This commit is contained in:
zhangchenbiao
2023-09-08 10:45:33 +08:00
parent af363be783
commit 331da47300
8 changed files with 5 additions and 47 deletions

View File

@@ -11,8 +11,6 @@ import lombok.Data;
@Data
public class UserEventDTO {
private String corpId;
private String eventType;
private String userId;

View File

@@ -17,9 +17,6 @@ public class AuthCorpInfoDTO {
@JSONField(name = "corp_name")
private String corpName;
@JSONField(name = "corpid")
private String corpId;
private String industry;
@JSONField(name = "auth_channel")

View File

@@ -1,26 +0,0 @@
package com.cool.store.dto.login;
/**
* @author zhangchenbiao
* @FileName: RefreshUser
* @Description:
* @date 2023-05-23 14:29
*/
public class RefreshUser {
/**
* 用户Id
*/
private String userId;
/**
* 钉钉业务id
*/
private String corpId;
/**
* 企业id
*/
private String eid;
}

View File

@@ -17,12 +17,9 @@ public class UserIdInfoDTO {
private String userId;
private String corpId;
public UserIdInfoDTO(String openId, String unionId, String userId, String corpId) {
public UserIdInfoDTO(String openId, String unionId, String userId) {
this.openId = openId;
this.unionId = unionId;
this.userId = userId;
this.corpId = corpId;
}
}