Merge branch 'cc_20251103_open_api' into 'master'

菜品市场门店营收接口新增字段

See merge request hangzhou/java/custom_zxjp!188
This commit is contained in:
苏竹红
2025-11-14 06:28:50 +00:00
2 changed files with 12 additions and 0 deletions

View File

@@ -25,6 +25,12 @@ public class RevenueDataDTO {
@ApiModelProperty("实收")
private BigDecimal receivedAmt;
@ApiModelProperty("外卖实收")
private BigDecimal takeoutReceivedAmt;
@ApiModelProperty("堂食实收")
private BigDecimal dineInReceivedAmt;
@ApiModelProperty("营业时间yyyy-MM-dd")
private String businessDate;

View File

@@ -34,5 +34,11 @@ public class RevenueDataVO {
@ApiModelProperty("菜品列表")
private List<LaunchDataVO> otherRecipeLaunchDates;
@ApiModelProperty("外卖实收")
private BigDecimal takeoutReceivedAmt;
@ApiModelProperty("堂食实收")
private BigDecimal dineInReceivedAmt;
}