remove(infection): 删除CDSS相关实体和服务类
- 删除CdssAlert实体类及其对应的映射器和实现类 - 删除CdssRule实体类及其对应的映射器和实现类 - 移除ICdssAlertService和ICdssRuleService接口定义 - 清理infection模块中的临床决策支持系统相关代码结构
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
package com.healthlink.his.infection.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.core.common.core.domain.HisBaseEntity;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("cdss_alert")
|
||||
public class CdssAlert extends HisBaseEntity {
|
||||
@TableId(value = "id", type = IdType.ASSIGN_ID)
|
||||
private Long id;
|
||||
@TableField("encounter_id")
|
||||
private Long encounterId;
|
||||
@TableField("patient_id")
|
||||
private Long patientId;
|
||||
@TableField("rule_id")
|
||||
private Long ruleId;
|
||||
@TableField("alert_type")
|
||||
private String alertType;
|
||||
@TableField("alert_message")
|
||||
private String alertMessage;
|
||||
@TableField("severity")
|
||||
private String severity;
|
||||
@TableField("acknowledged")
|
||||
private Boolean acknowledged;
|
||||
@TableField("acknowledged_by")
|
||||
private Long acknowledgedBy;
|
||||
@TableField("acknowledged_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date acknowledgedTime;
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
package com.healthlink.his.infection.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.core.common.core.domain.HisBaseEntity;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("cdss_rule")
|
||||
public class CdssRule extends HisBaseEntity {
|
||||
@TableId(value = "id", type = IdType.ASSIGN_ID)
|
||||
private Long id;
|
||||
@TableField("rule_code")
|
||||
private String ruleCode;
|
||||
@TableField("rule_name")
|
||||
private String ruleName;
|
||||
@TableField("rule_type")
|
||||
private String ruleType;
|
||||
@TableField("condition_expr")
|
||||
private String conditionExpr;
|
||||
@TableField("suggestion")
|
||||
private String suggestion;
|
||||
@TableField("severity")
|
||||
private String severity;
|
||||
@TableField("enabled")
|
||||
private Boolean enabled;
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
package com.healthlink.his.infection.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.healthlink.his.infection.domain.CdssAlert;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface CdssAlertMapper extends BaseMapper<CdssAlert> {
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
package com.healthlink.his.infection.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.healthlink.his.infection.domain.CdssRule;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface CdssRuleMapper extends BaseMapper<CdssRule> {
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
package com.healthlink.his.infection.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.healthlink.his.infection.domain.CdssAlert;
|
||||
|
||||
public interface ICdssAlertService extends IService<CdssAlert> {
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
package com.healthlink.his.infection.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.healthlink.his.infection.domain.CdssRule;
|
||||
|
||||
public interface ICdssRuleService extends IService<CdssRule> {
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
package com.healthlink.his.infection.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.healthlink.his.infection.domain.CdssAlert;
|
||||
import com.healthlink.his.infection.mapper.CdssAlertMapper;
|
||||
import com.healthlink.his.infection.service.ICdssAlertService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class CdssAlertServiceImpl extends ServiceImpl<CdssAlertMapper, CdssAlert> implements ICdssAlertService {
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
package com.healthlink.his.infection.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.healthlink.his.infection.domain.CdssRule;
|
||||
import com.healthlink.his.infection.mapper.CdssRuleMapper;
|
||||
import com.healthlink.his.infection.service.ICdssRuleService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class CdssRuleServiceImpl extends ServiceImpl<CdssRuleMapper, CdssRule> implements ICdssRuleService {
|
||||
}
|
||||
Reference in New Issue
Block a user