|
|
|
@ -6,6 +6,7 @@ import java.util.Date; |
|
|
|
import com.alops.common.annotation.Excel; |
|
|
|
import com.alops.common.annotation.Excel; |
|
|
|
import com.alops.common.core.domain.BaseEntity; |
|
|
|
import com.alops.common.core.domain.BaseEntity; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
|
|
|
|
|
|
|
|
@ -16,7 +17,8 @@ import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
* @author ruoyi |
|
|
|
* @author ruoyi |
|
|
|
* @date 2025-08-01 |
|
|
|
* @date 2025-08-01 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public class EquBase extends BaseEntity |
|
|
|
@Data |
|
|
|
|
|
|
|
public class EquBase |
|
|
|
{ |
|
|
|
{ |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
|
|
@ -36,9 +38,18 @@ public class EquBase extends BaseEntity |
|
|
|
private String ip; |
|
|
|
private String ip; |
|
|
|
|
|
|
|
|
|
|
|
/** 设备厂商 */ |
|
|
|
/** 设备厂商 */ |
|
|
|
@Excel(name = "设备厂商id ") |
|
|
|
|
|
|
|
private String manufacture; |
|
|
|
private String manufacture; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public EquManu getManufactureVO() { |
|
|
|
|
|
|
|
return manufactureVO; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setManufactureVO(EquManu manufactureVO) { |
|
|
|
|
|
|
|
this.manufactureVO = manufactureVO; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private EquManu manufactureVO; |
|
|
|
|
|
|
|
|
|
|
|
/** 安装位置 id */ |
|
|
|
/** 安装位置 id */ |
|
|
|
@Excel(name = "安装位置 id") |
|
|
|
@Excel(name = "安装位置 id") |
|
|
|
private String location; |
|
|
|
private String location; |
|
|
|
@ -47,6 +58,16 @@ public class EquBase extends BaseEntity |
|
|
|
@Excel(name = "设备类型 id") |
|
|
|
@Excel(name = "设备类型 id") |
|
|
|
private String equType; |
|
|
|
private String equType; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public EquType getEquTypeVO() { |
|
|
|
|
|
|
|
return equTypeVO; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setEquTypeVO(EquType equTypeVO) { |
|
|
|
|
|
|
|
this.equTypeVO = equTypeVO; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private EquType equTypeVO; |
|
|
|
|
|
|
|
|
|
|
|
/** 设备管理员 id */ |
|
|
|
/** 设备管理员 id */ |
|
|
|
@Excel(name = "设备管理员 id") |
|
|
|
@Excel(name = "设备管理员 id") |
|
|
|
private Long inCharge; |
|
|
|
private Long inCharge; |
|
|
|
@ -99,7 +120,7 @@ public class EquBase extends BaseEntity |
|
|
|
@Excel(name = "累积维修金额(元)") |
|
|
|
@Excel(name = "累积维修金额(元)") |
|
|
|
private BigDecimal repairCost; |
|
|
|
private BigDecimal repairCost; |
|
|
|
|
|
|
|
|
|
|
|
public void setId(String id) |
|
|
|
public void setId(String id) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this.id = id; |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
} |
|
|
|
@ -307,9 +328,9 @@ public class EquBase extends BaseEntity |
|
|
|
.append("serviceTime", getServiceTime()) |
|
|
|
.append("serviceTime", getServiceTime()) |
|
|
|
.append("warranty", getWarranty()) |
|
|
|
.append("warranty", getWarranty()) |
|
|
|
|
|
|
|
|
|
|
|
.append("createBy", getCreateBy()) |
|
|
|
//.append("createBy", getCreateBy())
|
|
|
|
.append("createDate", getCreateDate()) |
|
|
|
.append("createDate", getCreateDate()) |
|
|
|
.append("updateBy", getUpdateBy()) |
|
|
|
//.append("updateBy", getUpdateBy())
|
|
|
|
.append("updateDate", getUpdateDate()) |
|
|
|
.append("updateDate", getUpdateDate()) |
|
|
|
.append("status", getStatus()) |
|
|
|
.append("status", getStatus()) |
|
|
|
.append("failureFrequency", getFailureFrequency()) |
|
|
|
.append("failureFrequency", getFailureFrequency()) |
|
|
|
|