Commit c6521048 authored by EDY's avatar EDY

优化

parent 84b22b90
......@@ -5,6 +5,8 @@ import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import java.util.Date;
/**
* 客户信息对象 base_custom_info
*
......@@ -92,6 +94,10 @@ public class BaseCustomInfo extends BaseEntity
private String[] customSource;
private Date startTime;
private Date endTime;
public void setId(Long id)
{
this.id = id;
......@@ -308,4 +314,20 @@ public class BaseCustomInfo extends BaseEntity
public void setCustomSource(String[] customSource) {
this.customSource = customSource;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment