Commit 6ab1356e authored by 施翔轲's avatar 施翔轲

项目台账表大改动:新增关联ID

parent 6cca5fd0
...@@ -24,13 +24,17 @@ public class CbProjectRecord extends BaseEntity implements Serializable { ...@@ -24,13 +24,17 @@ public class CbProjectRecord extends BaseEntity implements Serializable {
@TableId(value = "id") @TableId(value = "id")
private Long id; private Long id;
/** /**
* 成本阶段(0:标前成本、1:标后成本、2:转固成本) * 关联ID(关联多个阶段)
*/ */
private Integer cbStage; private Long relatedId;
/** /**
* 项目名称 * 项目名称
*/ */
private String projectName; private String projectName;
/**
* 成本阶段(0:标前成本、1:标后成本、2:转固成本)
*/
private Integer cbStage;
/** /**
* 项目文件状态(0:准备中、1:解析中、2:解析成功、3:解析失败) * 项目文件状态(0:准备中、1:解析中、2:解析成功、3:解析失败)
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment