Fix Bug #544: AI修复

This commit is contained in:
2026-05-27 06:38:20 +08:00
parent d8b3064bd9
commit f6dfb6bec5
4 changed files with 127 additions and 158 deletions

View File

@@ -0,0 +1,16 @@
package com.openhis.application.domain.dto;
import lombok.Data;
import java.util.Date;
/**
* 分诊队列查询参数 DTO
* 修复 Bug #544增加日期范围查询字段支持历史队列追溯
*/
@Data
public class QueueQueryDto {
private Long deptId;
private String status;
private Date startDate;
private Date endDate;
}