| package doumeemes.core.utils.edpg.bean; | 
|   | 
| import doumeemes.dao.business.model.CompanyUser; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : JP | 
|  * @create 2023/6/30 8:57 | 
|  */ | 
| @Data | 
| public class EdgpUserResponseDTO { | 
|   | 
|     @ApiModelProperty(value = "接口调用结果:成功:success 失败:fail") | 
|     private String type; | 
|     @ApiModelProperty(value = "信息:message") | 
|     private String message; | 
|   | 
|     @ApiModelProperty(value = "用户信息") | 
|     private EdgpUserDTO data; | 
|   | 
|   | 
| } |