package com.qianwen.smartman.modules.coproduction.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.util.Date;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/PlanModifyVO.class */
|
public class PlanModifyVO {
|
@ApiModelProperty("id")
|
private Long id;
|
@ApiModelProperty("订单编号")
|
private String indentCode;
|
@ApiModelProperty("计划数量")
|
private Integer planNum;
|
@ApiModelProperty("计划开始时间")
|
private Date planStartTime;
|
@ApiModelProperty("计划结束时间")
|
private Date planEndTime;
|
@ApiModelProperty("扩展字段")
|
private String extendField;
|
@ApiModelProperty("规格型号")
|
private String standardModel;
|
|
public void setId(final Long id) {
|
this.id = id;
|
}
|
|
public void setIndentCode(final String indentCode) {
|
this.indentCode = indentCode;
|
}
|
|
public void setPlanNum(final Integer planNum) {
|
this.planNum = planNum;
|
}
|
|
public void setPlanStartTime(final Date planStartTime) {
|
this.planStartTime = planStartTime;
|
}
|
|
public void setPlanEndTime(final Date planEndTime) {
|
this.planEndTime = planEndTime;
|
}
|
|
public void setExtendField(final String extendField) {
|
this.extendField = extendField;
|
}
|
|
public void setStandardModel(final String standardModel) {
|
this.standardModel = standardModel;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof PlanModifyVO) {
|
PlanModifyVO other = (PlanModifyVO) o;
|
if (other.canEqual(this)) {
|
Object this$id = getId();
|
Object other$id = other.getId();
|
if (this$id == null) {
|
if (other$id != null) {
|
return false;
|
}
|
} else if (!this$id.equals(other$id)) {
|
return false;
|
}
|
Object this$planNum = getPlanNum();
|
Object other$planNum = other.getPlanNum();
|
if (this$planNum == null) {
|
if (other$planNum != null) {
|
return false;
|
}
|
} else if (!this$planNum.equals(other$planNum)) {
|
return false;
|
}
|
Object this$indentCode = getIndentCode();
|
Object other$indentCode = other.getIndentCode();
|
if (this$indentCode == null) {
|
if (other$indentCode != null) {
|
return false;
|
}
|
} else if (!this$indentCode.equals(other$indentCode)) {
|
return false;
|
}
|
Object this$planStartTime = getPlanStartTime();
|
Object other$planStartTime = other.getPlanStartTime();
|
if (this$planStartTime == null) {
|
if (other$planStartTime != null) {
|
return false;
|
}
|
} else if (!this$planStartTime.equals(other$planStartTime)) {
|
return false;
|
}
|
Object this$planEndTime = getPlanEndTime();
|
Object other$planEndTime = other.getPlanEndTime();
|
if (this$planEndTime == null) {
|
if (other$planEndTime != null) {
|
return false;
|
}
|
} else if (!this$planEndTime.equals(other$planEndTime)) {
|
return false;
|
}
|
Object this$extendField = getExtendField();
|
Object other$extendField = other.getExtendField();
|
if (this$extendField == null) {
|
if (other$extendField != null) {
|
return false;
|
}
|
} else if (!this$extendField.equals(other$extendField)) {
|
return false;
|
}
|
Object this$standardModel = getStandardModel();
|
Object other$standardModel = other.getStandardModel();
|
return this$standardModel == null ? other$standardModel == null : this$standardModel.equals(other$standardModel);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof PlanModifyVO;
|
}
|
|
public int hashCode() {
|
Object $id = getId();
|
int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
|
Object $planNum = getPlanNum();
|
int result2 = (result * 59) + ($planNum == null ? 43 : $planNum.hashCode());
|
Object $indentCode = getIndentCode();
|
int result3 = (result2 * 59) + ($indentCode == null ? 43 : $indentCode.hashCode());
|
Object $planStartTime = getPlanStartTime();
|
int result4 = (result3 * 59) + ($planStartTime == null ? 43 : $planStartTime.hashCode());
|
Object $planEndTime = getPlanEndTime();
|
int result5 = (result4 * 59) + ($planEndTime == null ? 43 : $planEndTime.hashCode());
|
Object $extendField = getExtendField();
|
int result6 = (result5 * 59) + ($extendField == null ? 43 : $extendField.hashCode());
|
Object $standardModel = getStandardModel();
|
return (result6 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode());
|
}
|
|
public String toString() {
|
return "PlanModifyVO(id=" + getId() + ", indentCode=" + getIndentCode() + ", planNum=" + getPlanNum() + ", planStartTime=" + getPlanStartTime() + ", planEndTime=" + getPlanEndTime() + ", extendField=" + getExtendField() + ", standardModel=" + getStandardModel() + ")";
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public String getIndentCode() {
|
return this.indentCode;
|
}
|
|
public Integer getPlanNum() {
|
return this.planNum;
|
}
|
|
public Date getPlanStartTime() {
|
return this.planStartTime;
|
}
|
|
public Date getPlanEndTime() {
|
return this.planEndTime;
|
}
|
|
public String getExtendField() {
|
return this.extendField;
|
}
|
|
public String getStandardModel() {
|
return this.standardModel;
|
}
|
}
|