节点
This commit is contained in:
parent
badef731f1
commit
b61567b32e
@ -92,6 +92,13 @@ public class TaskPartitionDict extends BaseEntity {
|
|||||||
@Excel(name = "任务细分备注")
|
@Excel(name = "任务细分备注")
|
||||||
private String taskPartitionRemark;
|
private String taskPartitionRemark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 任务细分模板内容
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "任务细分模板内容")
|
||||||
|
@Excel(name = "任务细分模板内容")
|
||||||
|
private String taskPartitionContent;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
|||||||
@ -0,0 +1,21 @@
|
|||||||
|
package com.xinelu.manage.dto.specialdiseasenode;
|
||||||
|
|
||||||
|
import com.xinelu.manage.domain.specialdiseasenode.SpecialDiseaseNode;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 专病路径-管理节点信息对象 special_disease_node
|
||||||
|
*
|
||||||
|
* @author xinelu
|
||||||
|
* @date 2024-03-13
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "专病路径-管理节点信息对象", description = "special_disease_node")
|
||||||
|
public class SpecialDiseaseNodeDTO {
|
||||||
|
|
||||||
|
|
||||||
|
List<SpecialDiseaseNode> specialDiseaseNodeList;
|
||||||
|
}
|
||||||
@ -14,6 +14,7 @@
|
|||||||
<result property="executionTime" column="execution_time"/>
|
<result property="executionTime" column="execution_time"/>
|
||||||
<result property="taskPartitionSort" column="task_partition_sort"/>
|
<result property="taskPartitionSort" column="task_partition_sort"/>
|
||||||
<result property="taskPartitionRemark" column="task_partition_remark"/>
|
<result property="taskPartitionRemark" column="task_partition_remark"/>
|
||||||
|
<result property="taskPartitionContent" column="task_partition_content"/>
|
||||||
<result property="createBy" column="create_by"/>
|
<result property="createBy" column="create_by"/>
|
||||||
<result property="createTime" column="create_time"/>
|
<result property="createTime" column="create_time"/>
|
||||||
<result property="updateBy" column="update_by"/>
|
<result property="updateBy" column="update_by"/>
|
||||||
@ -30,6 +31,7 @@
|
|||||||
execution_time,
|
execution_time,
|
||||||
task_partition_sort,
|
task_partition_sort,
|
||||||
task_partition_remark,
|
task_partition_remark,
|
||||||
|
task_partition_content,
|
||||||
create_by,
|
create_by,
|
||||||
create_time,
|
create_time,
|
||||||
update_by,
|
update_by,
|
||||||
@ -93,6 +95,8 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="taskPartitionRemark != null">task_partition_remark,
|
<if test="taskPartitionRemark != null">task_partition_remark,
|
||||||
</if>
|
</if>
|
||||||
|
<if test="taskPartitionContent != null">task_partition_content,
|
||||||
|
</if>
|
||||||
<if test="createBy != null">create_by,
|
<if test="createBy != null">create_by,
|
||||||
</if>
|
</if>
|
||||||
<if test="createTime != null">create_time,
|
<if test="createTime != null">create_time,
|
||||||
@ -119,6 +123,8 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="taskPartitionRemark != null">#{taskPartitionRemark},
|
<if test="taskPartitionRemark != null">#{taskPartitionRemark},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="taskPartitionRemark != null">#{taskPartitionContent},
|
||||||
|
</if>
|
||||||
<if test="createBy != null">#{createBy},
|
<if test="createBy != null">#{createBy},
|
||||||
</if>
|
</if>
|
||||||
<if test="createTime != null">#{createTime},
|
<if test="createTime != null">#{createTime},
|
||||||
@ -157,6 +163,9 @@
|
|||||||
<if test="taskPartitionRemark != null">task_partition_remark =
|
<if test="taskPartitionRemark != null">task_partition_remark =
|
||||||
#{taskPartitionRemark},
|
#{taskPartitionRemark},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="taskPartitionContent != null">task_partition_content =
|
||||||
|
#{taskPartitionContent},
|
||||||
|
</if>
|
||||||
<if test="createBy != null">create_by =
|
<if test="createBy != null">create_by =
|
||||||
#{createBy},
|
#{createBy},
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user