package com.highdatas.mdm.entity;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-04-20
|
*/
|
@TableName("sys_dispense_config")
|
public class SysDispenseConfig extends Model<SysDispenseConfig> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("error_continue")
|
private Boolean errorContinue;
|
|
private Integer timeout;
|
private String id;
|
|
@TableField("resend_cnt")
|
private Integer resendCnt;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Boolean getErrorContinue() {
|
return errorContinue;
|
}
|
|
public SysDispenseConfig setErrorContinue(Boolean errorContinue) {
|
this.errorContinue = errorContinue;
|
return this;
|
}
|
public Integer getTimeout() {
|
return timeout;
|
}
|
|
public SysDispenseConfig setTimeout(Integer timeout) {
|
this.timeout = timeout;
|
return this;
|
}
|
public Integer getResendCnt() {
|
return resendCnt;
|
}
|
|
public SysDispenseConfig setResendCnt(Integer resendCnt) {
|
this.resendCnt = resendCnt;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "SysDispenseConfig{" +
|
"errorContinue=" + errorContinue +
|
", timeout=" + timeout +
|
", resendCnt=" + resendCnt +
|
"}";
|
}
|
}
|