소스 검색

考场列表包含VIP 接口修改3

小么熊🐻 2 년 전
부모
커밋
d8ce1f8c7c
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 7 3
      jsjp-service/src/main/java/com/miaxis/examvip/domain/VipExamVideo.java

+ 7 - 3
jsjp-service/src/main/java/com/miaxis/examvip/domain/VipExamVideo.java

@@ -101,9 +101,13 @@ public class VipExamVideo extends BaseBusinessEntity {
 
     /** 观看模式 0:免费 1:试看20秒  2:会员 */
     @Excel(name = "观看模式")
-    @TableField("exam_name")
-    @ApiModelProperty(value = "观看模式 0:免费 1:试看20秒  2:会员")
+    @TableField("permission")
+    @ApiModelProperty(value = "观看模式 0:免费 1:试看 2:会员")
     private Integer permission;
 
-
+    /** 试看秒数 单位秒 */
+    @Excel(name = "试看秒数 单位秒")
+    @TableField("try_look_second")
+    @ApiModelProperty(value = "试看秒数 单位秒")
+    private Integer tryLookSecond;
 }