package com.ycl.platform.domain.entity;
|
|
|
import annotation.Excel;
|
import com.ycl.system.entity.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 平台运行监控对象 t_platform
|
*
|
* @author gonghl
|
* @date 2024-04-10
|
*/
|
public class TPlatform extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 平台编码
|
*/
|
@Excel(name = "平台编码")
|
private String platformCode;
|
|
/**
|
* 平台名称
|
*/
|
@Excel(name = "平台名称")
|
private String platformName;
|
|
/**
|
* 平台联系人
|
*/
|
@Excel(name = "平台联系人")
|
private String platformContact;
|
|
/**
|
* 平台联系人电话
|
*/
|
@Excel(name = "平台联系人电话")
|
private String platformContactPhone;
|
|
/**
|
* 状态:1正常 2异常
|
*/
|
@Excel(name = "状态:1正常 2异常")
|
private String status;
|
|
/**
|
* 逻辑删除:0未删除 1删除
|
*/
|
private String deleted;
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setPlatformCode(String platformCode) {
|
this.platformCode = platformCode;
|
}
|
|
public String getPlatformCode() {
|
return platformCode;
|
}
|
|
public void setPlatformName(String platformName) {
|
this.platformName = platformName;
|
}
|
|
public String getPlatformName() {
|
return platformName;
|
}
|
|
public void setPlatformContact(String platformContact) {
|
this.platformContact = platformContact;
|
}
|
|
public String getPlatformContact() {
|
return platformContact;
|
}
|
|
public void setPlatformContactPhone(String platformContactPhone) {
|
this.platformContactPhone = platformContactPhone;
|
}
|
|
public String getPlatformContactPhone() {
|
return platformContactPhone;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setDeleted(String deleted) {
|
this.deleted = deleted;
|
}
|
|
public String getDeleted() {
|
return deleted;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("platformCode", getPlatformCode())
|
.append("platformName", getPlatformName())
|
.append("platformContact", getPlatformContact())
|
.append("platformContactPhone", getPlatformContactPhone())
|
.append("status", getStatus())
|
.append("remark", getRemark())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|