manage:代码结构调整
parent
35a8319106
commit
9d16bb58b4
@ -1,11 +1,17 @@
|
|||||||
package com.supervision.manage.service;
|
package com.supervision.manage.service;
|
||||||
|
|
||||||
import com.supervision.vo.manage.TreatmentPlanResVo;
|
import com.supervision.model.DiseaseTreatmentPlan;
|
||||||
|
import com.supervision.vo.manage.DiseaseTreatmentPlanResVo;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public interface DiseaseTreatmentPlanManageService {
|
public interface DiseaseTreatmentPlanManageService {
|
||||||
|
|
||||||
List<TreatmentPlanResVo> queryListByDiseaseId(String diseaseId);
|
List<DiseaseTreatmentPlanResVo> queryListByDiseaseId(String diseaseId);
|
||||||
|
|
||||||
|
DiseaseTreatmentPlan saveTreatmentPlan(DiseaseTreatmentPlan diseaseTreatmentPlan);
|
||||||
|
|
||||||
|
void batchSaveTreatmentPlan(List<DiseaseTreatmentPlan> diseaseTreatmentPlanList);
|
||||||
|
|
||||||
|
boolean deleteDiseaseTreatmentPlan(String id);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
package com.supervision.vo.manage;
|
||||||
|
|
||||||
|
import com.supervision.model.ConfigTreatmentPlan;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
public class DiseaseTreatmentPlanResVo extends ConfigTreatmentPlan {
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("主键")
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -1,25 +0,0 @@
|
|||||||
package com.supervision.vo.manage;
|
|
||||||
|
|
||||||
import com.supervision.model.ConfigTreatmentPlan;
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public class TreatmentPlanResVo extends ConfigTreatmentPlan {
|
|
||||||
|
|
||||||
@ApiModelProperty("处置计划名称")
|
|
||||||
private String disposalPlanName;
|
|
||||||
|
|
||||||
@ApiModelProperty("处置计划名称")
|
|
||||||
private String firstMeasuresName;
|
|
||||||
|
|
||||||
@ApiModelProperty("处置计划名称")
|
|
||||||
private String secondMeasuresName;
|
|
||||||
|
|
||||||
@ApiModelProperty("处置计划名称")
|
|
||||||
private String disposalMethodName;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue