|
@@ -1,5 +1,6 @@
|
|
|
package com.zhongzheng.modules.course.bo;
|
|
|
|
|
|
+import com.zhongzheng.common.annotation.Excel;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
@@ -99,7 +100,16 @@ public class CourseEditBo {
|
|
|
/** 优选生成 0否 1是 */
|
|
|
@ApiModelProperty("优选生成 0否 1是")
|
|
|
private Integer firstChoice;
|
|
|
- /** 证书专业名称 */
|
|
|
- @ApiModelProperty("证书专业名称")
|
|
|
- private String certificateMajorName;
|
|
|
+ /** 证书类型ID */
|
|
|
+ @Excel(name = "证书类型ID")
|
|
|
+ @ApiModelProperty("证书类型ID")
|
|
|
+ private Long certificateTypeId;
|
|
|
+ /** 证书ID */
|
|
|
+ @Excel(name = "证书ID")
|
|
|
+ @ApiModelProperty("证书ID")
|
|
|
+ private Long certificateId;
|
|
|
+ /** 证书模板ID */
|
|
|
+ @Excel(name = "证书模板ID")
|
|
|
+ @ApiModelProperty("证书模板ID")
|
|
|
+ private Long certificateTpId;
|
|
|
}
|