mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
85 lines
1.9 KiB
Java
85 lines
1.9 KiB
Java
package com.jsowell.pile.domain;
|
|
|
|
import com.jsowell.common.annotation.Excel;
|
|
import com.jsowell.common.core.domain.BaseEntity;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
/**
|
|
* 站点、第三方推送平台配置对应对象 station_setting_relation
|
|
*
|
|
* @author jsowell
|
|
* @date 2023-06-06
|
|
*/
|
|
public class ThirdPartyStationRelation extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 主键
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 站点id
|
|
*/
|
|
@Excel(name = "站点id")
|
|
private Long stationId;
|
|
|
|
/**
|
|
* 三方配置类型
|
|
*/
|
|
@Excel(name = "三方配置类型")
|
|
private String thirdPartyType;
|
|
|
|
/**
|
|
* 删除标识
|
|
*/
|
|
private String delFlag;
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setStationId(Long stationId) {
|
|
this.stationId = stationId;
|
|
}
|
|
|
|
public Long getStationId() {
|
|
return stationId;
|
|
}
|
|
|
|
public void setThirdPartyType(String thirdPartyType) {
|
|
this.thirdPartyType = thirdPartyType;
|
|
}
|
|
|
|
public String getThirdPartyType() {
|
|
return thirdPartyType;
|
|
}
|
|
|
|
public void setDelFlag(String delFlag) {
|
|
this.delFlag = delFlag;
|
|
}
|
|
|
|
public String getDelFlag() {
|
|
return delFlag;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
|
|
.append("id", getId())
|
|
.append("stationId", getStationId())
|
|
.append("thirdPartyType", getThirdPartyType())
|
|
.append("createTime", getCreateTime())
|
|
.append("createBy", getCreateBy())
|
|
.append("updateTime", getUpdateTime())
|
|
.append("updateBy", getUpdateBy())
|
|
.append("delFlag", getDelFlag())
|
|
.toString();
|
|
}
|
|
}
|