package com.gkhy.safePlatform.targetDuty.model.dto.resp;
|
|
import java.sql.Timestamp;
|
import java.io.Serializable;
|
|
public class RewardPunishmentStandardDto implements Serializable {
|
|
private Long id;
|
//奖惩类型 1:奖励 2:惩罚
|
private Integer standardType;
|
//奖惩内容
|
private String content;
|
//奖惩名称
|
private String qName;
|
//依据
|
private String reason;
|
//备注信息
|
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 Integer getStandardType() {
|
return standardType;
|
}
|
|
public void setStandardType(Integer standardType) {
|
this.standardType = standardType;
|
}
|
//奖惩内容
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
//奖惩名称
|
public String getQName() {
|
return qName;
|
}
|
|
public void setQName(String qName) {
|
this.qName = qName;
|
}
|
//依据
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
//备注信息
|
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;
|
}
|
}
|