| | |
| | | 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") |
| | |
| | | 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; |
| | | } |
| | | |
| | | } |