|  |  | 
 |  |  | package com.zt.life.modules.project.model; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.zt.common.entity.BusiEntity; | 
 |  |  | 
 |  |  |  | 
 |  |  |    @ApiModelProperty(value = "编号") | 
 |  |  |    private String code; | 
 |  |  |  | 
 |  |  |    @ApiModelProperty(value = "项目ID") | 
 |  |  |    private Long projectId; | 
 |  |  |  | 
 |  |  |    @ApiModelProperty(value = "硬软件资源") | 
 |  |  |    private String hardSoftwareRes; | 
 |  |  | 
 |  |  |    @ApiModelProperty(value = "病毒库版本") | 
 |  |  |    private String virusDatabaseVersion; | 
 |  |  |  | 
 |  |  |    @ApiModelProperty(value = "年份") | 
 |  |  |    private String year; | 
 |  |  |  | 
 |  |  |    @TableField(exist = false) | 
 |  |  |    @ApiModelProperty(value = "专业实验室名称") | 
 |  |  |    private String agencyName; | 
 |  |  |  | 
 |  |  |    @TableField(exist = false) | 
 |  |  |    @ApiModelProperty(value = "测试地点") | 
 |  |  |    private String site; | 
 |  |  |  | 
 |  |  |    @TableField(exist = false) | 
 |  |  |    @ApiModelProperty(value = "被测软件") | 
 |  |  |    private String softwareName; | 
 |  |  |  | 
 |  |  |    @TableField(exist = false) | 
 |  |  |    @ApiModelProperty(value = "版本") | 
 |  |  |    private String softwareIdentity; | 
 |  |  |  | 
 |  |  |    @TableField(exist = false) | 
 |  |  |    @ApiModelProperty(value = "是否进行环境病毒查杀") | 
 |  |  |    private String isVirusScanStr; | 
 |  |  | } |