|
|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
package com.ruoyi.pm.domain;
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 处罚记录对象 pm_record_penalty
|
|
|
|
|
@ -11,35 +11,60 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
* @date 2025-11-27
|
|
|
|
|
*/
|
|
|
|
|
public class PmRecordPenalty extends BaseEntity{
|
|
|
|
|
public class PmRecordPenalty extends BaseEntity {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 处罚记录主键 */
|
|
|
|
|
/**
|
|
|
|
|
* 处罚记录主键
|
|
|
|
|
*/
|
|
|
|
|
private Long recordPenaltyId;
|
|
|
|
|
|
|
|
|
|
/** 处罚类型 */
|
|
|
|
|
/**
|
|
|
|
|
* 处罚类型
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "处罚类型")
|
|
|
|
|
private String penaltyType;
|
|
|
|
|
|
|
|
|
|
/** 类型编码 */
|
|
|
|
|
/**
|
|
|
|
|
* 类型编码
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "类型编码")
|
|
|
|
|
private String penaltyTypeCode;
|
|
|
|
|
|
|
|
|
|
/** 处罚说明 */
|
|
|
|
|
/**
|
|
|
|
|
* 处罚说明
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "处罚说明")
|
|
|
|
|
private String penaltyInfo;
|
|
|
|
|
|
|
|
|
|
/** 处罚金额 */
|
|
|
|
|
/**
|
|
|
|
|
* 处罚金额
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "处罚金额")
|
|
|
|
|
private Double penaltyAmount;
|
|
|
|
|
|
|
|
|
|
/** 处罚人员 */
|
|
|
|
|
/**
|
|
|
|
|
* 处罚人员
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "处罚人员")
|
|
|
|
|
private Long basePersonId;
|
|
|
|
|
|
|
|
|
|
/** 处理状态 */
|
|
|
|
|
/**
|
|
|
|
|
* 处理状态
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "处理状态")
|
|
|
|
|
private String processState;
|
|
|
|
|
private String epc;
|
|
|
|
|
private String checkState;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCheckState() {
|
|
|
|
|
return checkState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCheckState(String checkState) {
|
|
|
|
|
this.checkState = checkState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private PmBasePersonInfo basePersonInfo;
|
|
|
|
|
|
|
|
|
|
@ -51,90 +76,84 @@ public class PmRecordPenalty extends BaseEntity{
|
|
|
|
|
this.basePersonInfo = basePersonInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRecordPenaltyId(Long recordPenaltyId)
|
|
|
|
|
{
|
|
|
|
|
this.recordPenaltyId = recordPenaltyId;
|
|
|
|
|
public String getEpc() {
|
|
|
|
|
return epc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getRecordPenaltyId()
|
|
|
|
|
{
|
|
|
|
|
public void setEpc(String epc) {
|
|
|
|
|
this.epc = epc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getRecordPenaltyId() {
|
|
|
|
|
return recordPenaltyId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPenaltyType(String penaltyType)
|
|
|
|
|
{
|
|
|
|
|
this.penaltyType = penaltyType;
|
|
|
|
|
public void setRecordPenaltyId(Long recordPenaltyId) {
|
|
|
|
|
this.recordPenaltyId = recordPenaltyId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPenaltyType()
|
|
|
|
|
{
|
|
|
|
|
public String getPenaltyType() {
|
|
|
|
|
return penaltyType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPenaltyTypeCode(String penaltyTypeCode)
|
|
|
|
|
{
|
|
|
|
|
this.penaltyTypeCode = penaltyTypeCode;
|
|
|
|
|
public void setPenaltyType(String penaltyType) {
|
|
|
|
|
this.penaltyType = penaltyType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPenaltyTypeCode()
|
|
|
|
|
{
|
|
|
|
|
public String getPenaltyTypeCode() {
|
|
|
|
|
return penaltyTypeCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPenaltyInfo(String penaltyInfo)
|
|
|
|
|
{
|
|
|
|
|
this.penaltyInfo = penaltyInfo;
|
|
|
|
|
public void setPenaltyTypeCode(String penaltyTypeCode) {
|
|
|
|
|
this.penaltyTypeCode = penaltyTypeCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPenaltyInfo()
|
|
|
|
|
{
|
|
|
|
|
public String getPenaltyInfo() {
|
|
|
|
|
return penaltyInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPenaltyAmount(Double penaltyAmount)
|
|
|
|
|
{
|
|
|
|
|
this.penaltyAmount = penaltyAmount;
|
|
|
|
|
public void setPenaltyInfo(String penaltyInfo) {
|
|
|
|
|
this.penaltyInfo = penaltyInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getPenaltyAmount()
|
|
|
|
|
{
|
|
|
|
|
public Double getPenaltyAmount() {
|
|
|
|
|
return penaltyAmount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setBasePersonId(Long basePersonId)
|
|
|
|
|
{
|
|
|
|
|
this.basePersonId = basePersonId;
|
|
|
|
|
public void setPenaltyAmount(Double penaltyAmount) {
|
|
|
|
|
this.penaltyAmount = penaltyAmount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getBasePersonId()
|
|
|
|
|
{
|
|
|
|
|
public Long getBasePersonId() {
|
|
|
|
|
return basePersonId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setProcessState(String processState)
|
|
|
|
|
{
|
|
|
|
|
this.processState = processState;
|
|
|
|
|
public void setBasePersonId(Long basePersonId) {
|
|
|
|
|
this.basePersonId = basePersonId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProcessState()
|
|
|
|
|
{
|
|
|
|
|
public String getProcessState() {
|
|
|
|
|
return processState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setProcessState(String processState) {
|
|
|
|
|
this.processState = processState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("recordPenaltyId", getRecordPenaltyId())
|
|
|
|
|
.append("penaltyType", getPenaltyType())
|
|
|
|
|
.append("penaltyTypeCode", getPenaltyTypeCode())
|
|
|
|
|
.append("penaltyInfo", getPenaltyInfo())
|
|
|
|
|
.append("penaltyAmount", getPenaltyAmount())
|
|
|
|
|
.append("basePersonId", getBasePersonId())
|
|
|
|
|
.append("processState", getProcessState())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.toString();
|
|
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("recordPenaltyId", getRecordPenaltyId())
|
|
|
|
|
.append("penaltyType", getPenaltyType())
|
|
|
|
|
.append("penaltyTypeCode", getPenaltyTypeCode())
|
|
|
|
|
.append("penaltyInfo", getPenaltyInfo())
|
|
|
|
|
.append("penaltyAmount", getPenaltyAmount())
|
|
|
|
|
.append("basePersonId", getBasePersonId())
|
|
|
|
|
.append("processState", getProcessState())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|