|
|
@ -2,6 +2,7 @@ package com.ruoyi.aftersales.domain; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.ruoyi.system.domain.SysCustomer; |
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
import com.ruoyi.common.annotation.Excel; |
|
|
@ -87,7 +88,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
/** 出厂日期 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "出厂日期", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date factoryDate; |
|
|
|
private String factoryDate; |
|
|
|
|
|
|
|
/** 保修期 */ |
|
|
|
@Excel(name = "保修期") |
|
|
@ -100,7 +101,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
/** 锁机时间 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "锁机时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date lockDate; |
|
|
|
private String lockDate; |
|
|
|
|
|
|
|
/** 是否有锁机时间 */ |
|
|
|
@Excel(name = "是否有锁机时间") |
|
|
@ -109,7 +110,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
/** 损耗品到期时间 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "损耗品到期时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date wastageExpireDate; |
|
|
|
private String wastageExpireDate; |
|
|
|
|
|
|
|
/** 是否过损耗品到期时间 */ |
|
|
|
@Excel(name = "是否过损耗品到期时间") |
|
|
@ -118,7 +119,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
/** 二次维修后部件质保时间 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "二次维修后部件质保时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date componentGuaranteeDate; |
|
|
|
private String componentGuaranteeDate; |
|
|
|
|
|
|
|
/** 是否过二次维修后部件质保日期 */ |
|
|
|
@Excel(name = "是否过二次维修后部件质保日期") |
|
|
@ -132,6 +133,10 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
@Excel(name = "业务员姓名") |
|
|
|
private String salesmanName; |
|
|
|
|
|
|
|
/** 生产员姓名 */ |
|
|
|
@Excel(name = "生产员姓名") |
|
|
|
private String makeName; |
|
|
|
|
|
|
|
/** 客户ID */ |
|
|
|
@Excel(name = "客户ID") |
|
|
|
private String customerId; |
|
|
@ -149,6 +154,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
@Excel(name = "维修时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date maintainTime; |
|
|
|
|
|
|
|
|
|
|
|
public void setShippingDeviceCode(Long shippingDeviceCode) |
|
|
|
{ |
|
|
|
this.shippingDeviceCode = shippingDeviceCode; |
|
|
@ -302,15 +308,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
{ |
|
|
|
return aftersalesPhotourl; |
|
|
|
} |
|
|
|
public void setFactoryDate(Date factoryDate) |
|
|
|
{ |
|
|
|
this.factoryDate = factoryDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getFactoryDate() |
|
|
|
{ |
|
|
|
return factoryDate; |
|
|
|
} |
|
|
|
public void setGuaranteePeriod(String guaranteePeriod) |
|
|
|
{ |
|
|
|
this.guaranteePeriod = guaranteePeriod; |
|
|
@ -329,15 +327,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
{ |
|
|
|
return guaranteePeriodFlag; |
|
|
|
} |
|
|
|
public void setLockDate(Date lockDate) |
|
|
|
{ |
|
|
|
this.lockDate = lockDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getLockDate() |
|
|
|
{ |
|
|
|
return lockDate; |
|
|
|
} |
|
|
|
public void setLockDateFlag(String lockDateFlag) |
|
|
|
{ |
|
|
|
this.lockDateFlag = lockDateFlag; |
|
|
@ -347,15 +337,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
{ |
|
|
|
return lockDateFlag; |
|
|
|
} |
|
|
|
public void setWastageExpireDate(Date wastageExpireDate) |
|
|
|
{ |
|
|
|
this.wastageExpireDate = wastageExpireDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getWastageExpireDate() |
|
|
|
{ |
|
|
|
return wastageExpireDate; |
|
|
|
} |
|
|
|
public void setWastageExpireFlag(String wastageExpireFlag) |
|
|
|
{ |
|
|
|
this.wastageExpireFlag = wastageExpireFlag; |
|
|
@ -365,15 +347,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
{ |
|
|
|
return wastageExpireFlag; |
|
|
|
} |
|
|
|
public void setComponentGuaranteeDate(Date componentGuaranteeDate) |
|
|
|
{ |
|
|
|
this.componentGuaranteeDate = componentGuaranteeDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getComponentGuaranteeDate() |
|
|
|
{ |
|
|
|
return componentGuaranteeDate; |
|
|
|
} |
|
|
|
public void setComponentGuaranteeFlag(String componentGuaranteeFlag) |
|
|
|
{ |
|
|
|
this.componentGuaranteeFlag = componentGuaranteeFlag; |
|
|
@ -406,7 +380,15 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
this.customerId = customerId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getCustomerId() |
|
|
|
public String getMakeName() { |
|
|
|
return makeName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMakeName(String makeName) { |
|
|
|
this.makeName = makeName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getCustomerId() |
|
|
|
{ |
|
|
|
return customerId; |
|
|
|
} |
|
|
@ -428,16 +410,47 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
{ |
|
|
|
return maintainOrderCode; |
|
|
|
} |
|
|
|
public void setMaintainTime(Date maintainTime) |
|
|
|
{ |
|
|
|
this.maintainTime = maintainTime; |
|
|
|
|
|
|
|
public String getFactoryDate() { |
|
|
|
return factoryDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getMaintainTime() |
|
|
|
{ |
|
|
|
public void setFactoryDate(String factoryDate) { |
|
|
|
this.factoryDate = factoryDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLockDate() { |
|
|
|
return lockDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLockDate(String lockDate) { |
|
|
|
this.lockDate = lockDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWastageExpireDate() { |
|
|
|
return wastageExpireDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWastageExpireDate(String wastageExpireDate) { |
|
|
|
this.wastageExpireDate = wastageExpireDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getComponentGuaranteeDate() { |
|
|
|
return componentGuaranteeDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setComponentGuaranteeDate(String componentGuaranteeDate) { |
|
|
|
this.componentGuaranteeDate = componentGuaranteeDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getMaintainTime() { |
|
|
|
return maintainTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMaintainTime(Date maintainTime) { |
|
|
|
this.maintainTime = maintainTime; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
@ -469,6 +482,7 @@ public class AfterSalesShippingDevice extends BaseEntity |
|
|
|
.append("componentGuaranteeFlag", getComponentGuaranteeFlag()) |
|
|
|
.append("engineerName", getEngineerName()) |
|
|
|
.append("salesmanName", getSalesmanName()) |
|
|
|
.append("makeName",getMakeName()) |
|
|
|
.append("customerId", getCustomerId()) |
|
|
|
.append("customerName", getCustomerName()) |
|
|
|
.append("maintainOrderCode", getMaintainOrderCode()) |
|
|
|