Przeglądaj źródła

fix 资料审核

he2802 3 lat temu
rodzic
commit
d8fdb3330a

+ 7 - 1
zhongzheng-system/src/main/java/com/zhongzheng/modules/base/vo/ProfileTpVo.java

@@ -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;
 }