发现bug

This commit is contained in:
czx 2020-12-31 09:41:26 +08:00
parent d3ac78138a
commit 58ea5fb983
3 changed files with 16 additions and 1 deletions

View File

@ -1,5 +1,6 @@
package com.ruoyi.system.fantang.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
@ -43,4 +44,11 @@ private static final long serialVersionUID=1L;
/** 科室编号 */
@Excel(name = "科室编号")
private String departCode;
@TableField(exist = false)
private Long patientId;
@TableField(exist = false)
private String bedId;
@TableField(exist = false)
private String name;
}

View File

@ -15,5 +15,6 @@ import java.util.List;
@AllArgsConstructor
public class FtDepartVo extends FtDepartDao {
List<FtReportMealsDao> reportMealsList;
}

View File

@ -45,7 +45,10 @@ WHERE a.patient_id = #{patientId} and c.create_at = #{createAt}
c.foods,
c.id,
c.nutrition_food_id,
c.type
c.type,
b.patient_id,
b.name,
b.bed_id
FROM
ft_depart a
LEFT JOIN ft_patient b ON a.depart_id = b.depart_id
@ -58,6 +61,9 @@ WHERE a.patient_id = #{patientId} and c.create_at = #{createAt}
<result property="departId" column="depart_id"></result>
<result property="departName" column="depart_name"></result>
<result property="departCode" column="depart_code"></result>
<result property="patientId" column="patient_id"></result>
<result property="name" column="name"></result>
<result property="bedId" column="bed_id"></result>
<collection property="reportMealsList" ofType="com.ruoyi.system.fantang.domain.FtReportMealsDao">
<result property="id" column="id"></result>
<result property="createAt" column="create_at"></result>