From 8702c17288c16ec3d6760326e85cae37bbb10af8 Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期三, 17 八月 2022 16:07:17 +0800 Subject: [PATCH] 事故fix统计 --- goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetDivideDetail.java | 61 +++++++++++++++++++++++++----- 1 files changed, 50 insertions(+), 11 deletions(-) diff --git a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetDivideDetail.java b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetDivideDetail.java index 77f17d2..d28e720 100644 --- a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetDivideDetail.java +++ b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetDivideDetail.java @@ -1,18 +1,17 @@ package com.gkhy.safePlatform.targetDuty.entity; import java.sql.Timestamp; - -import com.fasterxml.jackson.annotation.JsonFormat; import com.gkhy.safePlatform.targetDuty.entity.BaseDomain; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.IdType; +import com.fasterxml.jackson.annotation.JsonFormat; /** * 目标指标分解详情(TargetDivideDetail)表实体类 * * @author xurui - * @since 2022-08-03 09:25:40 + * @since 2022-08-17 11:22:35 */ @SuppressWarnings("serial") @TableName("target_divide_detail") @@ -30,7 +29,7 @@ } //关联的目标指标/外键 - private Long targetId; + private Long targetId; public Long getTargetId() { return targetId; @@ -40,7 +39,7 @@ this.targetId = targetId; } //考核指标值 - private String value; + private String value; public String getValue() { return value; @@ -50,8 +49,8 @@ this.value = value; } //制定日期 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") - private Timestamp makeDate; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Timestamp makeDate; public Timestamp getMakeDate() { return makeDate; @@ -61,7 +60,7 @@ this.makeDate = makeDate; } //责任部门/外键 - private Long dutyDepartmentId; + private Long dutyDepartmentId; public Long getDutyDepartmentId() { return dutyDepartmentId; @@ -71,7 +70,7 @@ this.dutyDepartmentId = dutyDepartmentId; } //制定人部门/外键 - private Long makerDepartmentId; + private Long makerDepartmentId; public Long getMakerDepartmentId() { return makerDepartmentId; @@ -81,7 +80,7 @@ this.makerDepartmentId = makerDepartmentId; } //上报人/外键 - private Long commitPersonId; + private Long commitPersonId; public Long getCommitPersonId() { return commitPersonId; @@ -91,7 +90,7 @@ this.commitPersonId = commitPersonId; } //上报人名称 - private String commitPersonName; + private String commitPersonName; public String getCommitPersonName() { return commitPersonName; @@ -100,5 +99,45 @@ public void setCommitPersonName(String commitPersonName) { this.commitPersonName = commitPersonName; } + //目标分类/外键 + private Long targetTypeId; + + public Long getTargetTypeId() { + return targetTypeId; + } + + public void setTargetTypeId(Long targetTypeId) { + this.targetTypeId = targetTypeId; + } + //责任人/外键 + private Long dutyPersonId; + + public Long getDutyPersonId() { + return dutyPersonId; + } + + public void setDutyPersonId(Long dutyPersonId) { + this.dutyPersonId = dutyPersonId; + } + //责任人名称 + private String dutyPersonName; + + public String getDutyPersonName() { + return dutyPersonName; + } + + public void setDutyPersonName(String dutyPersonName) { + this.dutyPersonName = dutyPersonName; + } + //计划措施 + private String planDesc; + + public String getPlanDesc() { + return planDesc; + } + + public void setPlanDesc(String planDesc) { + this.planDesc = planDesc; + } } \ No newline at end of file -- Gitblit v1.9.2