From 80ca6abff38cf5520fcd0825d9d46582d3063f2d Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期一, 22 八月 2022 15:39:37 +0800 Subject: [PATCH] 事故案例 --- goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetMng.java | 82 ++++++++++++++++++---------------------- 1 files changed, 37 insertions(+), 45 deletions(-) diff --git a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetMng.java b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetMng.java index f703c92..28ca4da 100644 --- a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetMng.java +++ b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/entity/TargetMng.java @@ -1,23 +1,24 @@ 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; /** * 目标指标(TargetMng)表实体类 * * @author xurui - * @since 2022-08-22 10:14:22 + * @since 2022-07-20 11:49:22 */ @SuppressWarnings("serial") @TableName("target_mng") public class TargetMng extends BaseDomain { - - + + @TableId(type = IdType.AUTO) private Long id; public Long getId() { @@ -28,19 +29,20 @@ this.id = id; } - //安全目标指标 - private String qName; - - public String getQName() { + //安全目标指标 + private String qName; + + public String getqName() { return qName; } - public void setQName(String qName) { + public void setqName(String qName) { this.qName = qName; } - //目标指标编号 - private String indexNum; - + + //目标指标编号 + private String indexNum; + public String getIndexNum() { return indexNum; } @@ -48,9 +50,9 @@ public void setIndexNum(String indexNum) { this.indexNum = indexNum; } - //年度 - private String year; - + //年度 + private String year; + public String getYear() { return year; } @@ -58,9 +60,9 @@ public void setYear(String year) { this.year = year; } - //指标值 - private String value; - + //指标值 + private String value; + public String getValue() { return value; } @@ -68,9 +70,9 @@ public void setValue(String value) { this.value = value; } - //指标级别 1:公司级 2:部门分厂级 3:工段班组级 - private Integer level; - + //指标级别 1:公司级 2:部门分厂级 3:工段班组级 + private Integer level; + public Integer getLevel() { return level; } @@ -78,10 +80,10 @@ public void setLevel(Integer level) { this.level = level; } - //完成期限 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") - private Timestamp completeDate; - + //完成期限 + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Timestamp completeDate; + public Timestamp getCompleteDate() { return completeDate; } @@ -89,9 +91,9 @@ public void setCompleteDate(Timestamp completeDate) { this.completeDate = completeDate; } - //备注信息 - private String memo; - + //备注信息 + private String memo; + public String getMemo() { return memo; } @@ -99,9 +101,9 @@ public void setMemo(String memo) { this.memo = memo; } - //指标类型 1:年指标 2:月指标 3:半年 4:季度 - private Integer targetType; - + //指标类型 1:年指标 2:月指标 + private Integer targetType; + public Integer getTargetType() { return targetType; } @@ -109,9 +111,9 @@ public void setTargetType(Integer targetType) { this.targetType = targetType; } - //分解状态 1:已分解 2:未分解 - private Integer divideStatus; - + //分解状态 1:已分解 2:未分解 + private Integer divideStatus; + public Integer getDivideStatus() { return divideStatus; } @@ -119,15 +121,5 @@ public void setDivideStatus(Integer divideStatus) { this.divideStatus = divideStatus; } - //目标制定部门 - private Long makerDepartmentId; - - public Long getMakerDepartmentId() { - return makerDepartmentId; - } - public void setMakerDepartmentId(Long makerDepartmentId) { - this.makerDepartmentId = makerDepartmentId; - } - -} \ No newline at end of file +} -- Gitblit v1.9.2