外食计算优化,添加详情功能

This commit is contained in:
xiezhijun
2021-02-23 15:35:50 +08:00
parent 473ccef008
commit c1a937adf4
12 changed files with 382 additions and 82 deletions

View File

@ -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;

View File

@ -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;