update 81707 专项项目库导出zip
This commit is contained in:
+14
@@ -5,11 +5,17 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import com.jero.modules.laws.enterprise.entity.vo.DeclareFileList;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -132,6 +138,7 @@ public class ProcessProjectStandardTermUser {
|
||||
* 设计工程师
|
||||
*/
|
||||
@Dict(dictTable = "sys_user", dicCode = "id", dicText = "realname")
|
||||
@Excel(name = "姓名", width = 15, dictTable = "sys_user", dicCode = "id", dicText = "realname")
|
||||
@TableField(value = "design_engineer")
|
||||
@ApiModelProperty(value="设计工程师")
|
||||
private String designEngineer;
|
||||
@@ -154,6 +161,7 @@ public class ProcessProjectStandardTermUser {
|
||||
*/
|
||||
@TableField(value = "model_series")
|
||||
@Dict(dicCode = "model_series")
|
||||
@Excel(name = "车型", width = 15, dicCode = "model_series")
|
||||
@ApiModelProperty(value="车型系列")
|
||||
private String modelSeries;
|
||||
/**
|
||||
@@ -167,6 +175,7 @@ public class ProcessProjectStandardTermUser {
|
||||
* 依据描述
|
||||
*/
|
||||
@TableField(value = "description")
|
||||
@Excel(name = "依据描述", width = 15)
|
||||
@ApiModelProperty(value="依据描述")
|
||||
private String description;
|
||||
|
||||
@@ -210,4 +219,9 @@ public class ProcessProjectStandardTermUser {
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(value="部门id")
|
||||
private String departId;
|
||||
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(value = "相关材料文件名")
|
||||
@ExcelCollection(name = "")
|
||||
private List<DeclareFileList> declareFileList = Collections.emptyList();
|
||||
}
|
||||
Reference in New Issue
Block a user