feat(oa): 忽略projectId字段

- 在 OaProjectScheduleStep 实体中新增 projectId 字段- 使用 @TableField(exist = false) 注解标记该字段不映射数据库列
- 用于关联项目信息,支持业务逻辑处理
This commit is contained in:
2025-10-25 10:55:36 +08:00
parent 4f24e2c795
commit 7fe7f20445

View File

@@ -138,7 +138,7 @@ public class OaProjectScheduleStep extends BaseEntity {
//排序字段
private Integer sortNum;
@TableField(exist = false)
private Long projectId;
}