Commit 33b54ae6 by huangjy

fix:长者体检表名修改

parent 88a3fc74
package com.makeit.entity.platform.elder; 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 com.makeit.common.entity.BaseBusEntity;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
...@@ -20,14 +17,14 @@ import lombok.EqualsAndHashCode; ...@@ -20,14 +17,14 @@ import lombok.EqualsAndHashCode;
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@ApiModel(value="ElderMedicalExaminationInfo对象", description="长者体检报告信息") @ApiModel(value="ElderMedicalExaminationInfo对象", description="长者体检报告信息")
public class PlatElderMedicalExaminationInfo extends BaseBusEntity { public class PlatElderPhysicalReport extends BaseBusEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "长者id") @ApiModelProperty(value = "长者id")
private String elderId; private String elderId;
@ApiModelProperty(value = "体检报告") @ApiModelProperty(value = "体检报告 文件id")
private String reportId; private String reportId;
......
package com.makeit.mapper.platform.elder; package com.makeit.mapper.platform.elder;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo; import com.makeit.entity.platform.elder.PlatElderPhysicalReport;
/** /**
* <p> * <p>
...@@ -11,6 +11,6 @@ import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo; ...@@ -11,6 +11,6 @@ import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
* @author eugene young * @author eugene young
* @since 2023-08-29 * @since 2023-08-29
*/ */
public interface PlatElderMedicalExaminationInfoMapper extends BaseMapper<PlatElderMedicalExaminationInfo> { public interface PlatElderPhysicalReportMapper extends BaseMapper<PlatElderPhysicalReport> {
} }
package com.makeit.server.platform.elder; package com.makeit.server.platform.elder;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo; import com.makeit.entity.platform.elder.PlatElderPhysicalReport;
/** /**
* <p> * <p>
...@@ -11,6 +11,6 @@ import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo; ...@@ -11,6 +11,6 @@ import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo;
* @author eugene young * @author eugene young
* @since 2023-08-29 * @since 2023-08-29
*/ */
public interface PlatElderMedicalExaminationInfoService extends IService<PlatElderMedicalExaminationInfo> { public interface PlatElderPhysicalReportService extends IService<PlatElderPhysicalReport> {
} }
package com.makeit.server.platform.elder.impl; package com.makeit.server.platform.elder.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.makeit.entity.platform.elder.PlatElderMedicalExaminationInfo; import com.makeit.entity.platform.elder.PlatElderPhysicalReport;
import com.makeit.mapper.platform.elder.PlatElderMedicalExaminationInfoMapper; import com.makeit.mapper.platform.elder.PlatElderPhysicalReportMapper;
import com.makeit.server.platform.elder.PlatElderMedicalExaminationInfoService; import com.makeit.server.platform.elder.PlatElderPhysicalReportService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/** /**
...@@ -15,6 +15,6 @@ import org.springframework.stereotype.Service; ...@@ -15,6 +15,6 @@ import org.springframework.stereotype.Service;
* @since 2023-08-29 * @since 2023-08-29
*/ */
@Service @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