package com.gkhy.safePlatform.targetDuty.model.dto.resp; import java.sql.Timestamp; import java.io.Serializable; public class RewardPunishmentDetailDto implements Serializable { private Long id; //奖惩类型 1:奖励 2:惩罚 private Long rewardPunishmentStandardId; //员工(多个用逗号隔开) private String personId; //备注信息 private String memo; private Timestamp createTime; private Timestamp updateTime; public Long getId() { return id; } public void setId(Long id) { this.id = id; } //奖惩类型 1:奖励 2:惩罚 public Long getRewardPunishmentStandardId() { return rewardPunishmentStandardId; } public void setRewardPunishmentStandardId(Long rewardPunishmentStandardId) { this.rewardPunishmentStandardId = rewardPunishmentStandardId; } //员工(多个用逗号隔开) public String getPersonId() { return personId; } public void setPersonId(String personId) { this.personId = personId; } //备注信息 public String getMemo() { return memo; } public void setMemo(String memo) { this.memo = memo; } public Timestamp getCreateTime() { return createTime; } public void setCreateTime(Timestamp createTime) { this.createTime = createTime; } public Timestamp getUpdateTime() { return updateTime; } public void setUpdateTime(Timestamp updateTime) { this.updateTime = updateTime; } }