|
|
|
@ -8,9 +8,9 @@ import java.math.BigDecimal; |
|
|
|
/** |
|
|
|
* 组织 com 顶级模块 xm 大模块 core 小模块 <br> |
|
|
|
* 实体 XmTask所有属性名: <br> |
|
|
|
* id,name,parentTaskid,parentTaskname,projectId,projectName,level,sortLevel,executorUserid,executorUsername,preTaskid,preTaskname,startTime,endTime,milestone,description,remarks,createUserid,createUsername,createTime,rate,budgetCost,budgetWorkload,actCost,actWorkload,taskState,taskType,taskClass,toTaskCenter,actStartTime,actEndTime,bizProcInstId,bizFlowState,projectPhaseId,projectPhaseName,taskSkillNames,exeUsernames,taskSkillIds,exeUserids,taskOut,planType,settleSchemel,menuId,menuName,productId,productName,cbranchId,cdeptid,tagIds,tagNames,ntype,childrenCnt,ltime,pidPaths;<br> |
|
|
|
* id,name,parentTaskid,parentTaskname,projectId,projectName,level,sortLevel,executorUserid,executorUsername,preTaskid,preTaskname,startTime,endTime,milestone,description,remarks,createUserid,createUsername,createTime,rate,budgetCost,budgetWorkload,actCost,actWorkload,taskState,taskType,taskClass,toTaskCenter,actStartTime,actEndTime,bizProcInstId,bizFlowState,projectPhaseId,projectPhaseName,taskSkillNames,exeUsernames,taskSkillIds,exeUserids,taskOut,planType,settleSchemel,menuId,menuName,productId,productName,cbranchId,cdeptid,tagIds,tagNames,ntype,childrenCnt,ltime,pidPaths,lvl;<br> |
|
|
|
* 表 xm_task xm_task的所有字段名: <br> |
|
|
|
* id,name,parent_taskid,parent_taskname,project_id,project_name,level,sort_level,executor_userid,executor_username,pre_taskid,pre_taskname,start_time,end_time,milestone,description,remarks,create_userid,create_username,create_time,rate,budget_cost,budget_workload,act_cost,act_workload,task_state,task_type,task_class,to_task_center,act_start_time,act_end_time,biz_proc_inst_id,biz_flow_state,project_phase_id,project_phase_name,task_skill_names,exe_usernames,task_skill_ids,exe_userids,task_out,plan_type,settle_schemel,menu_id,menu_name,product_id,product_name,cbranch_id,cdeptid,tag_ids,tag_names,ntype,children_cnt,ltime,pid_paths;<br> |
|
|
|
* id,name,parent_taskid,parent_taskname,project_id,project_name,level,sort_level,executor_userid,executor_username,pre_taskid,pre_taskname,start_time,end_time,milestone,description,remarks,create_userid,create_username,create_time,rate,budget_cost,budget_workload,act_cost,act_workload,task_state,task_type,task_class,to_task_center,act_start_time,act_end_time,biz_proc_inst_id,biz_flow_state,project_phase_id,project_phase_name,task_skill_names,exe_usernames,task_skill_ids,exe_userids,task_out,plan_type,settle_schemel,menu_id,menu_name,product_id,product_name,cbranch_id,cdeptid,tag_ids,tag_names,ntype,children_cnt,ltime,pid_paths,lvl;<br> |
|
|
|
* 当前主键(包括多主键):<br> |
|
|
|
* id;<br> |
|
|
|
*/ |
|
|
|
@ -181,6 +181,9 @@ public class XmTask implements java.io.Serializable { |
|
|
|
|
|
|
|
@ApiModelProperty(notes="父级id逗号分割,最后一个为本节点节点编号,以,号结尾",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
String pidPaths; |
|
|
|
|
|
|
|
@ApiModelProperty(notes="层级0-顶级,1-一级,2-二级,3-三级,4-四级。总共5级",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
Integer lvl; |
|
|
|
|
|
|
|
/**任务编号**/ |
|
|
|
public XmTask(String id) { |
|
|
|
@ -515,6 +518,12 @@ public class XmTask implements java.io.Serializable { |
|
|
|
public void setPidPaths(String pidPaths) { |
|
|
|
this.pidPaths = pidPaths; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 层级0-顶级,1-一级,2-二级,3-三级,4-四级。总共5级 |
|
|
|
**/ |
|
|
|
public void setLvl(Integer lvl) { |
|
|
|
this.lvl = lvl; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 任务编号 |
|
|
|
@ -840,5 +849,11 @@ public class XmTask implements java.io.Serializable { |
|
|
|
public String getPidPaths() { |
|
|
|
return this.pidPaths; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 层级0-顶级,1-一级,2-二级,3-三级,4-四级。总共5级 |
|
|
|
**/ |
|
|
|
public Integer getLvl() { |
|
|
|
return this.lvl; |
|
|
|
} |
|
|
|
|
|
|
|
} |