package com.ycl.platform.base; import annotation.Excel; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; public abstract class CheckIndex { public Long id; //查询条件,日期 public String date; @Excel(name = "日期",dateFormat = "yyyy-MM-dd") public Date createTime; public Long deptId; @Excel(name = "区县") public String deptName; /** 考核标签(省厅/市局) */ @Excel(name = "考核标签", dictType = "platform_examine_tag") public Long examineTag; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Long getDeptId() { return deptId; } public void setDeptId(Long deptId) { this.deptId = deptId; } public String getDeptName() { return deptName; } public void setDeptName(String deptName) { this.deptName = deptName; } public Long getExamineTag() { return examineTag; } public void setExamineTag(Long examineTag) { this.examineTag = examineTag; } }