|
|
@@ -1,62 +0,0 @@
|
|
|
-package cn.tr.module.phototherapy.common.dto;
|
|
|
-
|
|
|
-import cn.tr.core.pojo.BaseDTO;
|
|
|
-import cn.tr.core.validation.Insert;
|
|
|
-import cn.tr.core.validation.Update;
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
-import jakarta.validation.constraints.NotBlank;
|
|
|
-import jakarta.validation.constraints.NotNull;
|
|
|
-import lombok.Data;
|
|
|
-import lombok.EqualsAndHashCode;
|
|
|
-import lombok.ToString;
|
|
|
-
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-/**
|
|
|
- * 治疗方案表修改传输对象
|
|
|
- *
|
|
|
- * @author CodeGenerator
|
|
|
- * @date 2026-01-13
|
|
|
- **/
|
|
|
-@Data
|
|
|
-@Schema(description = "设计方案修改传输对象")
|
|
|
-@EqualsAndHashCode(callSuper = true)
|
|
|
-@ToString
|
|
|
-public class BusTherapyPlanEditDTO extends BaseDTO {
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- @Schema(description = "方案医生")
|
|
|
- private String planDoctor;
|
|
|
-
|
|
|
- @Schema(description = "强化期阶段")
|
|
|
- private String intensivePhaseType;
|
|
|
-
|
|
|
- @Schema(description = "强化期阶段频率")
|
|
|
- private Integer intensivePhaseFreq;
|
|
|
-
|
|
|
- @Schema(description = "强化期阶段建议时长")
|
|
|
- private Integer intensivePhaseDurationMin;
|
|
|
-
|
|
|
- @Schema(description = "次续期阶段")
|
|
|
- private String continuousPhaseType;
|
|
|
-
|
|
|
- @Schema(description = "次续期阶段频率")
|
|
|
- private Integer continuousPhaseFreq;
|
|
|
-
|
|
|
- @Schema(description = "次续期阶段建议时长")
|
|
|
- private Integer continuousPhaseDurationMin;
|
|
|
-
|
|
|
- @Schema(description = "强化期阶段日文本(每日/隔日)")
|
|
|
- private String intensivePhaseDayText;
|
|
|
-
|
|
|
- @Schema(description = "次续期阶段日文本(每日/隔日)")
|
|
|
- private String continuousPhaseDayText;
|
|
|
-
|
|
|
- @Schema(description = "患者唯一标识")
|
|
|
- private String patientUniqueId;
|
|
|
-
|
|
|
- @Schema(description = "逻辑删除(0存在 1删除)")
|
|
|
- private Integer isDelete;
|
|
|
-
|
|
|
-}
|