Commit 33b54ae6 by huangjy

fix:长者体检表名修改

parent 88a3fc74
package com.makeit.entity.platform.elder;
import com.baomidou.mybatisplus.annotation.IdType;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableId;
import com.makeit.common.entity.BaseBusEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
......@@ -20,14 +17,14 @@ import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value="ElderMedicalExaminationInfo对象", description="长者体检报告信息")
public class PlatElderMedicalExaminationInfo extends BaseBusEntity {
public class PlatElderPhysicalReport extends BaseBusEntity {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "长者id")
private String elderId;
@ApiModelProperty(value = "体检报告")
@ApiModelProperty(value = "体检报告 文件id")
private String reportId;
......
package com.makeit.mapper.platform.elder;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
import com.makeit.entity.platform.elder.PlatElderPhysicalReport;
/**
* <p>
......@@ -11,6 +11,6 @@ import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
* @author eugene young
* @since 2023-08-29
*/
public interface PlatElderMedicalExaminationInfoMapper extends BaseMapper<PlatElderMedicalExaminationInfo> {
public interface PlatElderPhysicalReportMapper extends BaseMapper<PlatElderPhysicalReport> {
}
package com.makeit.server.platform.elder;
import com.baomidou.mybatisplus.extension.service.IService;
import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
import com.makeit.entity.platform.elder.PlatElderPhysicalReport;
/**
* <p>
......@@ -11,6 +11,6 @@ import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
* @author eugene young
* @since 2023-08-29
*/
public interface PlatElderMedicalExaminationInfoService extends IService<PlatElderMedicalExaminationInfo> {
public interface PlatElderPhysicalReportService extends IService<PlatElderPhysicalReport> {
}
package com.makeit.server.platform.elder.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
import com.makeit.mapper.platform.elder.PlatElderMedicalExaminationInfoMapper;
import com.makeit.server.platform.elder.PlatElderMedicalExaminationInfoService;
import com.makeit.entity.platform.elder.PlatElderPhysicalReport;
import com.makeit.mapper.platform.elder.PlatElderPhysicalReportMapper;
import com.makeit.server.platform.elder.PlatElderPhysicalReportService;
import org.springframework.stereotype.Service;
/**
......@@ -15,6 +15,6 @@ import org.springframework.stereotype.Service;
* @since 2023-08-29
*/
@Service
public class PlatElderMedicalExaminationInfoServiceImpl extends ServiceImpl<PlatElderMedicalExaminationInfoMapper, PlatElderMedicalExaminationInfo> implements PlatElderMedicalExaminationInfoService {
public class PlatElderPhysicalReportServiceImpl extends ServiceImpl<PlatElderPhysicalReportMapper, PlatElderPhysicalReport> implements PlatElderPhysicalReportService {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment