| | |
| | | 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-07-20 11:49:22 |
| | | * @since 2022-08-22 11:00:59 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("target_mng") |
| | |
| | | public void setqName(String qName) { |
| | | this.qName = qName; |
| | | } |
| | | |
| | | //目标指标编号 |
| | | private String indexNum; |
| | | |
| | |
| | | |
| | | public void setValue(String value) { |
| | | this.value = value; |
| | | } |
| | | //1:大于 2:等于 3:小于 |
| | | private Integer valueSign; |
| | | |
| | | public Integer getValueSign() { |
| | | return valueSign; |
| | | } |
| | | |
| | | public void setValueSign(Integer valueSign) { |
| | | this.valueSign = valueSign; |
| | | } |
| | | //指标级别 1:公司级 2:部门分厂级 3:工段班组级 |
| | | private Integer level; |
| | |
| | | public void setMemo(String memo) { |
| | | this.memo = memo; |
| | | } |
| | | //指标类型 1:年指标 2:月指标 |
| | | //指标类型 1:年指标 2:月指标 3:半年 4:季度 |
| | | private Integer targetType; |
| | | |
| | | public Integer getTargetType() { |
| | |
| | | public void setDivideStatus(Integer divideStatus) { |
| | | this.divideStatus = divideStatus; |
| | | } |
| | | //目标制定部门 |
| | | private Long makerDepartmentId; |
| | | |
| | | public Long getMakerDepartmentId() { |
| | | return makerDepartmentId; |
| | | } |
| | | |
| | | public void setMakerDepartmentId(Long makerDepartmentId) { |
| | | this.makerDepartmentId = makerDepartmentId; |
| | | } |
| | | |
| | | } |