| package doumeemes.core.utils.dingding.bean; | 
|   | 
| import doumeemes.dao.business.model.CompanyUser; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/6/20 8:57 | 
|  */ | 
| @Data | 
| public class CompanyUserDTO { | 
|   | 
|     @ApiModelProperty(value = "是否还有更多的数据:true:有;false:没有") | 
|     private Boolean hasMore; | 
|   | 
|     @ApiModelProperty(value = "下一次分页的游标") | 
|     private Long nextCursor; | 
|   | 
|     @ApiModelProperty(value = "企业用户列表") | 
|     private List<CompanyUser> companyUserList; | 
|   | 
| } |