Commit 7a16b11e authored by 赵啸非's avatar 赵啸非

修改考勤汇总

parent 938ee527
......@@ -24,6 +24,11 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
* 人员id
*/
private Long staffId;
/**
* 所属中心
*/
@Excel(name = "所属中心")
private String belongCenter;
/**
* 工号
*/
......@@ -146,5 +151,7 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
this.year = DateUtil.year(new Date());
this.month = DateUtil.month(new Date())+1;
this.belongCenter = "宜宾市民中心";
}
}
\ No newline at end of file
......@@ -767,3 +767,5 @@ ALTER TABLE mortals_xhx_attendance_stat ADD COLUMN `goTimes` int(9) default
ALTER TABLE mortals_xhx_attendance_stat ADD COLUMN `morningTimes` int(9) default 0 COMMENT '上午缺卡次数' AFTER goTimes;
ALTER TABLE mortals_xhx_attendance_stat ADD COLUMN `afternoonTimes` int(9) default 0 COMMENT '下午缺卡次数' AFTER morningTimes;
ALTER TABLE mortals_xhx_staff_perform_summary ADD COLUMN `belongCenter` varchar(512) DEFAULT '宜宾市民中心' COMMENT '所属中心' AFTER staffName;
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