|
|
|
@ -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;<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> |
|
|
|
* 表 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;<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> |
|
|
|
* 当前主键(包括多主键):<br> |
|
|
|
* id;<br> |
|
|
|
*/ |
|
|
|
@ -179,6 +179,9 @@ public class XmTask implements java.io.Serializable { |
|
|
|
@ApiModelProperty(notes="更新时间",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
Date ltime; |
|
|
|
|
|
|
|
@ApiModelProperty(notes="父级id逗号分割,最后一个为本节点节点编号,以,号结尾",allowEmptyValue=true,example="",allowableValues="") |
|
|
|
String pidPaths; |
|
|
|
|
|
|
|
/**任务编号**/ |
|
|
|
public XmTask(String id) { |
|
|
|
this.id = id; |
|
|
|
@ -506,6 +509,12 @@ public class XmTask implements java.io.Serializable { |
|
|
|
public void setLtime(Date ltime) { |
|
|
|
this.ltime = ltime; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 父级id逗号分割,最后一个为本节点节点编号,以,号结尾 |
|
|
|
**/ |
|
|
|
public void setPidPaths(String pidPaths) { |
|
|
|
this.pidPaths = pidPaths; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 任务编号 |
|
|
|
@ -825,5 +834,11 @@ public class XmTask implements java.io.Serializable { |
|
|
|
public Date getLtime() { |
|
|
|
return this.ltime; |
|
|
|
} |
|
|
|
/** |
|
|
|
* 父级id逗号分割,最后一个为本节点节点编号,以,号结尾 |
|
|
|
**/ |
|
|
|
public String getPidPaths() { |
|
|
|
return this.pidPaths; |
|
|
|
} |
|
|
|
|
|
|
|
} |