package com.gkhy.safePlatform.targetDuty.model.dto.req; import com.gkhy.safePlatform.targetDuty.utils.poihelper.ExcelCell; import java.io.Serializable; import java.sql.Timestamp; public class RewardPunishmentStandardImportExcel implements Serializable { //奖惩名称 @ExcelCell(index = 1) private String qName; //奖惩类型 1:奖励 2:惩罚 @ExcelCell(index = 2) private Integer standardType; //奖惩内容 @ExcelCell(index = 3) private String content; //依据 @ExcelCell(index = 4) private String reason; //备注信息 @ExcelCell(index = 5) private String memo; //奖惩类型 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; } }