|
@@ -2,13 +2,15 @@ package com.sooka.sponest.mobile.data.generalbusiness.domain;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
|
-import com.sooka.sponest.mobile.base.domain.AppBaseBO;
|
|
|
+import com.ruoyi.common.datascope.base.domain.BaseBusinessEntity;
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
-public class AppDailyBO extends AppBaseBO {
|
|
|
+@Data
|
|
|
+public class AppDailyBO extends BaseBusinessEntity {
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -48,101 +50,4 @@ public class AppDailyBO extends AppBaseBO {
|
|
|
/** 部门名称 */
|
|
|
@Excel(name = "部门名称")
|
|
|
private String deptName;
|
|
|
-
|
|
|
- public void setId(String id)
|
|
|
- {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getId()
|
|
|
- {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setDataStatus(String dataStatus)
|
|
|
- {
|
|
|
- this.dataStatus = dataStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDataStatus()
|
|
|
- {
|
|
|
- return dataStatus;
|
|
|
- }
|
|
|
- public void setDataDeptId(Long dataDeptId)
|
|
|
- {
|
|
|
- this.dataDeptId = dataDeptId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getDataDeptId()
|
|
|
- {
|
|
|
- return dataDeptId;
|
|
|
- }
|
|
|
- public void setDailyType(String dailyType)
|
|
|
- {
|
|
|
- this.dailyType = dailyType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDailyType()
|
|
|
- {
|
|
|
- return dailyType;
|
|
|
- }
|
|
|
- public void setDailyTime(Date dailyTime)
|
|
|
- {
|
|
|
- this.dailyTime = dailyTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getDailyTime()
|
|
|
- {
|
|
|
- return dailyTime;
|
|
|
- }
|
|
|
- public void setDailyTitle(String dailyTitle)
|
|
|
- {
|
|
|
- this.dailyTitle = dailyTitle;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDailyTitle()
|
|
|
- {
|
|
|
- return dailyTitle;
|
|
|
- }
|
|
|
- public void setDailyContent(String dailyContent)
|
|
|
- {
|
|
|
- this.dailyContent = dailyContent;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDailyContent()
|
|
|
- {
|
|
|
- return dailyContent;
|
|
|
- }
|
|
|
- public void setDeptId(Long deptId)
|
|
|
- {
|
|
|
- this.deptId = deptId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getDeptId()
|
|
|
- {
|
|
|
- return deptId;
|
|
|
- }
|
|
|
- public void setDeptName(String deptName)
|
|
|
- {
|
|
|
- this.deptName = deptName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDeptName()
|
|
|
- {
|
|
|
- return deptName;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("dataStatus", getDataStatus())
|
|
|
- .append("dataDeptId", getDataDeptId())
|
|
|
- .append("dailyType", getDailyType())
|
|
|
- .append("dailyTime", getDailyTime())
|
|
|
- .append("dailyTitle", getDailyTitle())
|
|
|
- .append("dailyContent", getDailyContent())
|
|
|
- .append("deptId", getDeptId())
|
|
|
- .append("deptName", getDeptName())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|