feature(server): ProjectGroupWorkerProfile增加projectWorkerId的id。
This commit is contained in:
parent
0aab46881a
commit
6ab08bcc18
@ -83,15 +83,44 @@ public class NodeUserProfile {
|
||||
*/
|
||||
public static class ProjectGroupWorkerProfile {
|
||||
|
||||
// 新冗余字段
|
||||
/**
|
||||
* 项目小组人员id
|
||||
* 项目小组人员主键id
|
||||
*/
|
||||
private Long projectGroupWorkerId;
|
||||
/**
|
||||
* 状态 状态 0-有效 1-无效
|
||||
*/
|
||||
private Integer status;
|
||||
//
|
||||
// /**
|
||||
// * 所属的项目内班组id
|
||||
// */
|
||||
// private Long belongProjectTeamId;
|
||||
//
|
||||
// /**
|
||||
// * (合作小组才有)原项目内班组id
|
||||
// */
|
||||
// private Long sourceProjectTeamId;
|
||||
|
||||
// /**
|
||||
// * 小组id
|
||||
// */
|
||||
// private Long projectGroupId;
|
||||
|
||||
/**
|
||||
* 项目内工人id
|
||||
*/
|
||||
private Long projectWorkerId;
|
||||
|
||||
// /**
|
||||
// * 小组类型 0-直属小组 1-合作小组
|
||||
// */
|
||||
// private Integer groupType;
|
||||
|
||||
/**
|
||||
* 是否删除 0:否 其他:删除
|
||||
*/
|
||||
private Long isDelete;
|
||||
}
|
||||
|
||||
private static final Map<Integer, Class<?>> typeClassMapping = ImmutableMap.of(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user