package com.gkhy.safePlatform.targetDuty.entity;
|
|
import java.sql.Timestamp;
|
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;
|
|
/**
|
* 奖惩记录(RewardPunishmentDetail)表实体类
|
*
|
* @author xurui
|
* @since 2022-07-21 10:15:45
|
*/
|
@SuppressWarnings("serial")
|
@TableName("reward_punishment_detail")
|
public class RewardPunishmentDetail extends BaseDomain {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
//奖惩类型 1:奖励 2:惩罚
|
private Long rewardPunishmentStandardId;
|
|
public Long getRewardPunishmentStandardId() {
|
return rewardPunishmentStandardId;
|
}
|
|
public void setRewardPunishmentStandardId(Long rewardPunishmentStandardId) {
|
this.rewardPunishmentStandardId = rewardPunishmentStandardId;
|
}
|
//员工(多个用逗号隔开)
|
private String personId;
|
|
public String getPersonId() {
|
return personId;
|
}
|
|
public void setPersonId(String personId) {
|
this.personId = personId;
|
}
|
//备注信息
|
private String memo;
|
|
public String getMemo() {
|
return memo;
|
}
|
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
|
}
|