package com.artfess.cqxy.projectManagement.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;


@ApiModel(description = "项目修改全过程造价咨询单位，VO对象")
@Data
public class ProjectCostConsultationVo {

    @ApiModelProperty(name = "id", notes = "项目ID")
    private String id;

    @ApiModelProperty(name = "costConsultation", notes = "全过程造价咨询单位")
    private String costConsultation;

}
