修改推荐阈值

This commit is contained in:
qjq
2024-06-21 09:58:57 +08:00
parent a460d8b5e1
commit 7e0a213f55

View File

@ -37,12 +37,12 @@ public class MemberConstants {
/**
* 热量达标量
*/
public static final Integer STANDARDS = 5000;
public static final Integer STANDARDS = 1250*7;
/**
* 热量超标量
*/
public static final Integer EXCEED_STANDARDS = 10000;
public static final Integer EXCEED_STANDARDS = 3500*7;
/**
* 热量不足建议
@ -72,7 +72,7 @@ public class MemberConstants {
/**
* 早餐推荐摄入量
*/
public static final BigDecimal PROPOSE_MORNING = new BigDecimal("400");
public static final BigDecimal PROPOSE_MORNING = new BigDecimal("600");
/**
* 午餐推荐摄入量
@ -82,5 +82,5 @@ public class MemberConstants {
/**
* 晚餐推荐摄入量
*/
public static final BigDecimal PROPOSE_NIGHT = new BigDecimal("400");
public static final BigDecimal PROPOSE_NIGHT = new BigDecimal("600");
}