feat: 添加参建单位类型

add workspaceJoinType
This commit is contained in:
TanJ 2023-10-23 10:47:56 +08:00
parent c2467df19e
commit fb4965c198
2 changed files with 16 additions and 0 deletions

View File

@ -73,6 +73,20 @@ public class ContextInfo {
private UserInfoMap userInfoMap;
/**
* <pre>
* 单位加入工作台时的类型:
* PRIMARY_CONTRACTING_UNIT(1, "总包单位"),
* CONSTRUCTION_UNIT(2, "建设单位"),
* SUPERVISION_UNIT(3, "监理单位"),
* LABOR_SUBCONTRACTING(4, "劳务分包"),
* PROFESSIONAL_SUBCONTRACTING(5, "专业分包"),
* AXZ_PLATFORM(6, "OMS平台"),
* ENT_GENERAL(7, "企业通用"),
* </pre>
*/
private Integer workspaceJoinType;
/**
* 模板方法用来自定义ContextInfo
*

View File

@ -42,4 +42,6 @@ public class LegacyGuessMissedRsp {
private Integer workspaceType = 0;
private Integer workspaceJoinType = 0;
}