package com.ruoyi.sy.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 三一车辆上报时间对象 ard_sy_car_day
|
*
|
* @author ard
|
* @date 2023-08-07
|
*/
|
public class ArdSyCarDay extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 车辆主键 */
|
@Excel(name = "车辆主键")
|
private String carId;
|
|
/** 上报日(年月日) */
|
@Excel(name = "上报日", readConverterExp = "年=月日")
|
private String day;
|
|
/** 首次上报时间 */
|
@Excel(name = "首次上报时间")
|
private String firstTime;
|
|
/** 最后上报时间 */
|
@Excel(name = "最后上报时间")
|
private String endTime;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setCarId(String carId)
|
{
|
this.carId = carId;
|
}
|
|
public String getCarId()
|
{
|
return carId;
|
}
|
public void setDay(String day)
|
{
|
this.day = day;
|
}
|
|
public String getDay()
|
{
|
return day;
|
}
|
public void setFirstTime(String firstTime)
|
{
|
this.firstTime = firstTime;
|
}
|
|
public String getFirstTime()
|
{
|
return firstTime;
|
}
|
public void setEndTime(String endTime)
|
{
|
this.endTime = endTime;
|
}
|
|
public String getEndTime()
|
{
|
return endTime;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("carId", getCarId())
|
.append("day", getDay())
|
.append("firstTime", getFirstTime())
|
.append("endTime", getEndTime())
|
.toString();
|
}
|
}
|