feat: 新增考勤模板管理功能

- 后端新增 WmsAttendanceTemplate CRUD(Controller/Service/Mapper/Domain)
- 前端新增 attendanceTemplate API 对接
- 前端新增 AttendanceTemplateManager 组件(拖拽排序 + 模板编辑)
- 优化考勤 drag.vue 页面交互
This commit is contained in:
2026-06-06 17:08:31 +08:00
parent 696f6d9ee0
commit 1a2fc9852d
11 changed files with 969 additions and 58 deletions

View File

@@ -0,0 +1,45 @@
package com.klp.domain.vo;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
/**
* 排班模板视图对象 wms_attendance_template
*
* @author klp
* @date 2026-06-06
*/
@Data
@ExcelIgnoreUnannotated
public class WmsAttendanceTemplateVo {
private static final long serialVersionUID = 1L;
/**
* 主键ID
*/
@ExcelProperty(value = "主键ID")
private Long templateId;
/**
* 模板名称
*/
@ExcelProperty(value = "模板名称")
private String templateName;
/**
* 模板内容
*/
@ExcelProperty(value = "模板内容")
private String templateContent;
/**
* 备注
*/
@ExcelProperty(value = "备注")
private String remark;
}