店铺
This commit is contained in:
@@ -7,6 +7,7 @@ import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
@@ -14,7 +15,7 @@ import java.math.BigDecimal;
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
public class ShopUserMoneyEditDTO implements java.io.Serializable{
|
||||
public class ShopUserMoneyEditDTO implements Serializable {
|
||||
/**
|
||||
* 对应shopUserid
|
||||
*/
|
||||
|
||||
@@ -19,9 +19,10 @@ public interface CashierCartService extends IService<CashierCart> {
|
||||
/**
|
||||
* 获取到的结果 是针对tb_order_detail的
|
||||
*
|
||||
* @param shopId 桌码
|
||||
* @param tableCode 桌码
|
||||
* @param isUseVip 是否使用会员价
|
||||
* @param placeNum 第几次下单
|
||||
*/
|
||||
List<OrderDetail> getCartByTableCode(@NotBlank String tableCode, @NotNull Integer isUseVip,@NotNull Integer placeNum);
|
||||
List<OrderDetail> getCartByTableCode(@NotBlank Long shopId,@NotBlank String tableCode, @NotNull Integer isUseVip,@NotNull Integer placeNum);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user