package com.artfess.cqxy.projectManagement.vo;

import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;


@ApiModel(description = "项目修改土地费用，VO对象")
@Data
public class ProjectLandCostVo {

    @ApiModelProperty(name = "id", notes = "项目ID")
    private String id;

    @ApiModelProperty(value = "土地面积")
    private String landArea;

    @ApiModelProperty(value = "单位（使用字典，1：㎡ ，2：亩）")
    private String landUnit;

    @ApiModelProperty(value = "土地单价")
    private String landPrice;

    @ApiModelProperty(value = "总价")
    private String landTotalPrice;

}
