|
@@ -0,0 +1,35 @@
|
|
|
+package org.dromara.web.domain.bo;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.sql.Timestamp;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author: Huanyi
|
|
|
+ * @CreateTime: 2025-08-18
|
|
|
+ * @Description:
|
|
|
+ * @Version: 1.0
|
|
|
+ */
|
|
|
+
|
|
|
+@Data
|
|
|
+public class DietaryPrescriptionBo {
|
|
|
+
|
|
|
+ private Timestamp tradeDateEarliest;
|
|
|
+
|
|
|
+ private Timestamp tradeDateLatest;
|
|
|
+
|
|
|
+ private Timestamp calculationDateEarliest;
|
|
|
+
|
|
|
+ private Timestamp calculationDateLatest;
|
|
|
+
|
|
|
+ private Integer consultationType;
|
|
|
+
|
|
|
+ private Long doctorDepartmentId;
|
|
|
+
|
|
|
+ private Long patientDepartmentId;
|
|
|
+
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ private Integer dietaryType;
|
|
|
+
|
|
|
+}
|