package com.ycl.platform.base;
|
|
import annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
import java.util.List;
|
|
public abstract class CheckIndex {
|
@TableField("id")
|
public Long id;
|
//查询条件,月份
|
@TableField(exist = false)
|
public String date;
|
//查询条件,日期
|
@TableField(exist = false)
|
public String day;
|
|
@Excel(name = "日期",dateFormat = "yyyy-MM-dd")
|
@TableField("create_time")
|
public Date createTime;
|
@TableField("dept_id")
|
public Long deptId;
|
@Excel(name = "区县")
|
@TableField(exist = false)
|
public String deptName;
|
|
/** 考核标签(省厅/市局) */
|
@Excel(name = "考核标签", dictType = "platform_examine_tag")
|
@TableField("examine_tag")
|
public Short examineTag;
|
@TableField(exist = false)
|
public List<Integer> deptIds;
|
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 Short getExamineTag() {
|
return examineTag;
|
}
|
|
public void setExamineTag(Short examineTag) {
|
this.examineTag = examineTag;
|
}
|
|
public List<Integer> getDeptIds() {
|
return deptIds;
|
}
|
|
|
public String getDay() {
|
return day;
|
}
|
|
public void setDay(String day) {
|
this.day = day;
|
}
|
|
public void setDeptIds(List<Integer> deptIds) {
|
this.deptIds = deptIds;
|
}
|
}
|