|
@@ -4,6 +4,7 @@ import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import com.citu.framework.excel.core.annotations.DictFormat;
|
|
|
import com.citu.framework.excel.core.convert.DictConvert;
|
|
|
+import com.citu.framework.excel.core.convert.JsonConvert;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
@@ -30,8 +31,6 @@ public class EnterpriseRespVO {
|
|
|
@ExcelProperty("企业全称")
|
|
|
private String name;
|
|
|
|
|
|
-// private String en
|
|
|
-
|
|
|
@Schema(description = "企业别称", example = "xx科技")
|
|
|
@ExcelProperty("企业别称")
|
|
|
private String anotherName;
|
|
@@ -71,15 +70,15 @@ public class EnterpriseRespVO {
|
|
|
private String scale;
|
|
|
|
|
|
@Schema(description = "企业福利")
|
|
|
- @ExcelProperty("企业福利")
|
|
|
+ @ExcelProperty(value = "企业福利", converter = JsonConvert.class)
|
|
|
private List<String> welfareList;
|
|
|
|
|
|
@Schema(description = "企业标签")
|
|
|
- @ExcelProperty("企业标签")
|
|
|
+ @ExcelProperty(value = "企业标签", converter = JsonConvert.class)
|
|
|
private List<String> tagList;
|
|
|
|
|
|
@Schema(description = "企业相册")
|
|
|
- @ExcelProperty("企业相册")
|
|
|
+ @ExcelProperty(value = "企业相册", converter = JsonConvert.class)
|
|
|
private List<String> albumList;
|
|
|
|
|
|
@Schema(description = "上班时间")
|
|
@@ -103,7 +102,7 @@ public class EnterpriseRespVO {
|
|
|
private Boolean prepare;
|
|
|
|
|
|
@Schema(description = "允许企业发布哪些职位类型")
|
|
|
- @ExcelProperty("允许企业发布哪些职位类型")
|
|
|
+ @ExcelProperty(value = "允许企业发布哪些职位类型", converter = JsonConvert.class)
|
|
|
private List<String> pubJobTypePerm;
|
|
|
|
|
|
@Schema(description = "状态(0正常 1停用)")
|