外食计算优化,添加详情功能
This commit is contained in:
@ -39,6 +39,18 @@ public class SysCustomerHeatStatistics extends BaseEntity
|
||||
@Excel(name = "当天食材总热量")
|
||||
private Integer heatValue;
|
||||
|
||||
/** 当天摄入蛋白质热量 */
|
||||
@Excel(name = "当天摄入蛋白质热量")
|
||||
private Integer proteinHeat;
|
||||
|
||||
/** 当天摄入脂肪热量 */
|
||||
@Excel(name = "当天摄入脂肪热量")
|
||||
private Integer fatHeat;
|
||||
|
||||
/** 当天摄入碳水热量 */
|
||||
@Excel(name = "当天摄入碳水热量")
|
||||
private Integer carbonWaterHeat;
|
||||
|
||||
/** 当天热量缺口 */
|
||||
@Excel(name = "当天热量缺口")
|
||||
private Integer heatGap;
|
||||
|
@ -56,6 +56,12 @@ public class SysFoodHeatStatistics extends BaseEntity
|
||||
@Excel(name = "碳水质量,克")
|
||||
private Integer carbonWaterQuality;
|
||||
|
||||
private Integer proteinHeat;
|
||||
|
||||
private Integer fatHeat;
|
||||
|
||||
private Integer carbonWaterHeat;
|
||||
|
||||
/** 热量数值 */
|
||||
@Excel(name = "热量数值")
|
||||
private Integer heatValue;
|
||||
|
Reference in New Issue
Block a user