发现bug
This commit is contained in:
parent
d3ac78138a
commit
58ea5fb983
@ -1,5 +1,6 @@
|
|||||||
package com.ruoyi.system.fantang.domain;
|
package com.ruoyi.system.fantang.domain;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
@ -43,4 +44,11 @@ private static final long serialVersionUID=1L;
|
|||||||
/** 科室编号 */
|
/** 科室编号 */
|
||||||
@Excel(name = "科室编号")
|
@Excel(name = "科室编号")
|
||||||
private String departCode;
|
private String departCode;
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
|
private Long patientId;
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String bedId;
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String name;
|
||||||
}
|
}
|
||||||
|
@ -15,5 +15,6 @@ import java.util.List;
|
|||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class FtDepartVo extends FtDepartDao {
|
public class FtDepartVo extends FtDepartDao {
|
||||||
|
|
||||||
|
|
||||||
List<FtReportMealsDao> reportMealsList;
|
List<FtReportMealsDao> reportMealsList;
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,10 @@ WHERE a.patient_id = #{patientId} and c.create_at = #{createAt}
|
|||||||
c.foods,
|
c.foods,
|
||||||
c.id,
|
c.id,
|
||||||
c.nutrition_food_id,
|
c.nutrition_food_id,
|
||||||
c.type
|
c.type,
|
||||||
|
b.patient_id,
|
||||||
|
b.name,
|
||||||
|
b.bed_id
|
||||||
FROM
|
FROM
|
||||||
ft_depart a
|
ft_depart a
|
||||||
LEFT JOIN ft_patient b ON a.depart_id = b.depart_id
|
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="departId" column="depart_id"></result>
|
||||||
<result property="departName" column="depart_name"></result>
|
<result property="departName" column="depart_name"></result>
|
||||||
<result property="departCode" column="depart_code"></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">
|
<collection property="reportMealsList" ofType="com.ruoyi.system.fantang.domain.FtReportMealsDao">
|
||||||
<result property="id" column="id"></result>
|
<result property="id" column="id"></result>
|
||||||
<result property="createAt" column="create_at"></result>
|
<result property="createAt" column="create_at"></result>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user