外食计算器优化,营养成分以及热量比例数据计算
This commit is contained in:
@ -52,6 +52,15 @@ public class SysCustomerHeatStatistics extends BaseEntity
|
||||
//食材热量
|
||||
private Integer[] foodHeatList;
|
||||
|
||||
//食材蛋白质质量
|
||||
private Integer[] proteinQualityList;
|
||||
|
||||
//食材脂肪质量
|
||||
private Integer[] fatQualityList;
|
||||
|
||||
//食材碳水质量
|
||||
private Integer[] carbonWaterQualityList;
|
||||
|
||||
//具体食材集合
|
||||
private List<SysFoodHeatStatistics> foodHeatStatisticsList;
|
||||
}
|
@ -44,6 +44,18 @@ public class SysFoodHeatStatistics extends BaseEntity
|
||||
@Excel(name = "类型,0早 1中 2晚")
|
||||
private Integer edibleType;
|
||||
|
||||
/** 蛋白质质量,克 */
|
||||
@Excel(name = "蛋白质质量,克")
|
||||
private Integer proteinQuality;
|
||||
|
||||
/** 脂肪质量,克 */
|
||||
@Excel(name = "脂肪质量,克")
|
||||
private Integer fatQuality;
|
||||
|
||||
/** 碳水质量,克 */
|
||||
@Excel(name = "碳水质量,克")
|
||||
private Integer carbonWaterQuality;
|
||||
|
||||
/** 热量数值 */
|
||||
@Excel(name = "热量数值")
|
||||
private Integer heatValue;
|
||||
|
Reference in New Issue
Block a user