|
|
|
@ -7,9 +7,9 @@ import java.util.Date; |
|
|
|
/** |
|
|
|
* 组织 com 顶级模块 xm 大模块 core 小模块 <br> |
|
|
|
* 实体 XmProjectGroup所有属性名: <br> |
|
|
|
* id,groupName,projectId,pgTypeId,pgTypeName,leaderUserid,leaderUsername,ctime,ltime,productId,branchId,pgClass,pgroupId,lvl,pidPaths,isTpl,assUserid,assUsername,childrenCnt,userCnt,qxCode,calcWorkload,ntype;<br> |
|
|
|
* id,groupName,projectId,pgTypeId,pgTypeName,leaderUserid,leaderUsername,ctime,ltime,productId,branchId,pgClass,pgroupId,lvl,pidPaths,isTpl,assUserid,assUsername,childrenCnt,userCnt,qxCode,calcWorkload,ntype,crowBranchId,crowBranchName,isCrow;<br> |
|
|
|
* 表 xm_project_group xm_project_group的所有字段名: <br> |
|
|
|
* id,group_name,project_id,pg_type_id,pg_type_name,leader_userid,leader_username,ctime,ltime,product_id,branch_id,pg_class,pgroup_id,lvl,pid_paths,is_tpl,ass_userid,ass_username,children_cnt,user_cnt,qx_code,calc_workload,ntype;<br> |
|
|
|
* id,group_name,project_id,pg_type_id,pg_type_name,leader_userid,leader_username,ctime,ltime,product_id,branch_id,pg_class,pgroup_id,lvl,pid_paths,is_tpl,ass_userid,ass_username,children_cnt,user_cnt,qx_code,calc_workload,ntype,crow_branch_id,crow_branch_name,is_crow;<br> |
|
|
|
* 当前主键(包括多主键):<br> |
|
|
|
* id;<br> |
|
|
|
*/ |
|
|
|
@ -87,6 +87,15 @@ public class XmProjectGroup implements java.io.Serializable { |
|
|
|
|
|
|
|
@ApiModelProperty(notes="节点类型0管理团队、1执行团队",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
String ntype; |
|
|
|
|
|
|
|
@ApiModelProperty(notes="协作公司编号",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
Integer crowBranchId; |
|
|
|
|
|
|
|
@ApiModelProperty(notes="协作公司名称",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
String crowBranchName; |
|
|
|
|
|
|
|
@ApiModelProperty(notes="是否众包团队",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
String isCrow; |
|
|
|
|
|
|
|
/**主键**/ |
|
|
|
public XmProjectGroup(String id) { |
|
|
|
@ -235,6 +244,24 @@ public class XmProjectGroup implements java.io.Serializable { |
|
|
|
public void setNtype(String ntype) { |
|
|
|
this.ntype = ntype; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 协作公司编号 |
|
|
|
**/ |
|
|
|
public void setCrowBranchId(Integer crowBranchId) { |
|
|
|
this.crowBranchId = crowBranchId; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 协作公司名称 |
|
|
|
**/ |
|
|
|
public void setCrowBranchName(String crowBranchName) { |
|
|
|
this.crowBranchName = crowBranchName; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 是否众包团队 |
|
|
|
**/ |
|
|
|
public void setIsCrow(String isCrow) { |
|
|
|
this.isCrow = isCrow; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 主键 |
|
|
|
@ -374,5 +401,23 @@ public class XmProjectGroup implements java.io.Serializable { |
|
|
|
public String getNtype() { |
|
|
|
return this.ntype; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 协作公司编号 |
|
|
|
**/ |
|
|
|
public Integer getCrowBranchId() { |
|
|
|
return this.crowBranchId; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 协作公司名称 |
|
|
|
**/ |
|
|
|
public String getCrowBranchName() { |
|
|
|
return this.crowBranchName; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 是否众包团队 |
|
|
|
**/ |
|
|
|
public String getIsCrow() { |
|
|
|
return this.isCrow; |
|
|
|
} |
|
|
|
|
|
|
|
} |