3 changed files with 66 additions and 1 deletions
@ -0,0 +1,32 @@ |
|||
package com.kms.build.domain.vo; |
|||
|
|||
|
|||
import com.jianwei.common.annotation.Excel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class WarnProjectVo { |
|||
@Excel(name = "工程名称") |
|||
@ApiModelProperty("项目名称") |
|||
private String projectName; |
|||
|
|||
|
|||
@Excel(name = "项目类型") |
|||
@ApiModelProperty("项目类型") |
|||
private String projectType; |
|||
|
|||
|
|||
@Excel(name = "项目投资概算(元)") |
|||
private String total; |
|||
|
|||
|
|||
@Excel(name = "业务单位") |
|||
private String unit; |
|||
|
|||
@Excel(name = "是否属于规划内") |
|||
private String isBelong; |
|||
|
|||
@Excel(name = "项目阶段") |
|||
private String projectPhase; |
|||
} |
Loading…
Reference in new issue