You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.supervision.vo.manage;
|
|
|
|
|
|
|
|
import com.supervision.model.ConfigTreatmentPlan;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
public class DiseaseTreatmentPlanResVo extends ConfigTreatmentPlan {
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("主键")
|
|
|
|
private String id;
|
|
|
|
|
|
|
|
@ApiModelProperty("疾病id")
|
|
|
|
private String diseaseId;
|
|
|
|
|
|
|
|
// @Deprecated
|
|
|
|
// @ApiModelProperty("计划id")
|
|
|
|
// private String planId;
|
|
|
|
|
|
|
|
@ApiModelProperty("计划id 用来代替planId")
|
|
|
|
private String treatmentPlanId;
|
|
|
|
|
|
|
|
@ApiModelProperty("药物列表")
|
|
|
|
private List<String> drugIds;
|
|
|
|
|
|
|
|
|
|
|
|
}
|