|
@@ -2,11 +2,13 @@ package com.zhongzheng.modules.base.vo;
|
|
|
|
|
|
import com.zhongzheng.common.annotation.Excel;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.zhongzheng.common.core.domain.entity.SysUser;
|
|
|
+import com.zhongzheng.modules.course.domain.CourseChapterBusiness;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import java.util.Date;
|
|
|
-
|
|
|
+import java.util.List;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -48,4 +50,8 @@ public class ProfileTpVo {
|
|
|
@Excel(name = "第二个页面key值")
|
|
|
@ApiModelProperty("第二个页面key值")
|
|
|
private String keyValue2;
|
|
|
+ @ApiModelProperty("业务层级列表")
|
|
|
+ private List<ProfileTpBusinessVo> businessList;
|
|
|
+ @ApiModelProperty("用户列表")
|
|
|
+ private List<SysUser> userList;
|
|
|
}
|