package com.artfess.yhxt.contract.vo;

import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.math.BigDecimal;

@Data
public class OrderItemCountVo {


    @ApiModelProperty("路段id")
    private String roadId ;

    @Excel(name = "路段名称" ,width =20)
    @ApiModelProperty("路段名称")
    private String roadName ;


    @ApiModelProperty("合同名称")
    private String contractName ;


    @Excel(name = "成本科目" ,width =20)
    @ApiModelProperty("成本科目")
    private String itemName;

    @Excel(name = "已完成" ,width =20)
    @ApiModelProperty("已完成")
    private Integer finishCount = 0;

    @Excel(name = "施工中" ,width =20)
    @ApiModelProperty("施工中")
    private Integer constructionCount = 0;

    @Excel(name = "已逾期" ,width =20)
    @ApiModelProperty("已逾期")
    private Integer overdueCount = 0;


    @Excel(name = "合同金额" ,width =20)
    @ApiModelProperty("合同金额")
    private BigDecimal contractMoney;;

    @Excel(name = "完成金额" ,width =20)
    @ApiModelProperty("完成金额")
    private BigDecimal finishMoney;

    @Excel(name = "执行率" ,width =20)
    @ApiModelProperty("执行率 已带百分号")
    private String implementationRate ="0%";








}
