IntelligentRecognition/ah-jjsp-service/.svn/pristine/91/91047115756429fba4f59686e0d...

81 lines
1.1 KiB
Plaintext

package com.sercurityControl.decision.domain;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.io.Serializable;
/**
* 工程画像
*/
@Getter
@Setter
@NoArgsConstructor
public class ProjectSketch implements Serializable {
/**
* 主键
*/
private String id;
/**
* 工程名称
*/
private String projectName;
/**
* 标段编码
*/
private String bidNo;
/**
* 建管单位名称
*/
private String buildOrgName;
/**
* 建管单位编码
*/
private String buildOrgNo;
/**
* 描述
*/
private String descirbe;
/**
* 金额
*/
private String money;
/**
* 地理位置
*/
private String location;
/**
* 阶段
*/
private String stage;
/**
* 质量特性
*/
private String qualityFeature;
/**
* 质量要求
*/
private String qualityDemand;
/**
* 检查要求
*/
private String checkDemand;
/**
* 开工时间
*/
private String startDate;
private static final long serialVersionUID = 1L;
}