新增预警页面

This commit is contained in:
2025-12-10 22:40:38 +08:00
parent abe7f9cbc1
commit 698314e92d

View File

@@ -46,7 +46,7 @@ import java.io.Serial;
@Column(name = "participant_user", attrName = "participantUser", label = "接收人账号"),
@Column(name = "participant_name", attrName = "participantName", label = "接收人名称"),
@Column(name = "update_time", attrName = "updateTime", label = "更新时间", isQuery = false, isUpdateForce = true),
}, orderBy = "a.schedule_id DESC"
}, orderBy = "a.create_time DESC"
)
@Data
public class BizCalendarSchedule extends DataEntity<BizCalendarSchedule> implements Serializable {
@@ -78,7 +78,7 @@ public class BizCalendarSchedule extends DataEntity<BizCalendarSchedule> impleme
@ExcelField(title = "日程详情/备注", attrName = "content", align = Align.CENTER, sort = 50),
@ExcelField(title = "日程开始时间", attrName = "startTime", align = Align.CENTER, sort = 60, dataFormat = "yyyy-MM-dd hh:mm"),
@ExcelField(title = "日程结束时间", attrName = "endTime", align = Align.CENTER, sort = 70, dataFormat = "yyyy-MM-dd hh:mm"),
@ExcelField(title = "是否全天", attrName = "allDay", align = Align.CENTER, sort = 80),
@ExcelField(title = "是否全天", attrName = "allDay", dictType = "is_day", align = Align.CENTER, sort = 80),
@ExcelField(title = "日程地点", attrName = "location", align = Align.CENTER, sort = 90),
@ExcelField(title = "优先等级", attrName = "priority", dictType = "priority", align = Align.CENTER, sort = 100),
@ExcelField(title = "日程状态", attrName = "ustatus", dictType = "todo_status", align = Align.CENTER, sort = 110),