package com.javaweb.geo.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.javaweb.common.annotation.Excel;
|
import com.javaweb.common.core.domain.BaseEntity;
|
|
/**
|
* 数据来源对象 js_data_source
|
*
|
* @author cxy
|
* @date 2022-12-30
|
*/
|
public class DataSource extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String ids;
|
|
/** 数据来源 */
|
@Excel(name = "数据来源")
|
private String dataSource;
|
|
/** 平台密钥 */
|
@Excel(name = "平台密钥")
|
private String secretKey;
|
|
/** 平台密钥 */
|
@Excel(name = "公司Id")
|
private String companyId;
|
|
public void setIds(String ids)
|
{
|
this.ids = ids;
|
}
|
|
public String getIds()
|
{
|
return ids;
|
}
|
public void setDataSource(String dataSource)
|
{
|
this.dataSource = dataSource;
|
}
|
|
public String getDataSource()
|
{
|
return dataSource;
|
}
|
public void setSecretKey(String secretKey)
|
{
|
this.secretKey = secretKey;
|
}
|
|
public String getSecretKey()
|
{
|
return secretKey;
|
}
|
|
public String getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(String companyId) {
|
this.companyId = companyId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("ids", getIds())
|
.append("dataSource", getDataSource())
|
.append("secretKey", getSecretKey())
|
.append("companyId", getCompanyId())
|
.toString();
|
}
|
}
|