优惠券同步 下架问题
This commit is contained in:
@@ -4,6 +4,7 @@ import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
@@ -14,6 +15,7 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 积分商品设置 实体类。
|
||||
@@ -26,6 +28,7 @@ import lombok.NoArgsConstructor;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Table("mk_points_goods")
|
||||
@Accessors(chain = true)
|
||||
public class MkPointsGoods implements Serializable {
|
||||
|
||||
@Serial
|
||||
@@ -133,5 +136,4 @@ public class MkPointsGoods implements Serializable {
|
||||
private ShopCoupon couponInfo;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -36,4 +36,7 @@ public interface MkPointsGoodsService extends IService<MkPointsGoods> {
|
||||
* @param totalExchangeCount 累计兑换数量 最终值
|
||||
*/
|
||||
boolean upNumberById(Long id, Integer quantity, Integer totalExchangeCount);
|
||||
|
||||
|
||||
void updateGoodsCouponStatus(Long coupon);
|
||||
}
|
||||
|
||||
@@ -68,6 +68,10 @@ public class OrderInfoVo implements Serializable {
|
||||
* 台桌名称
|
||||
*/
|
||||
private String tableName;
|
||||
/**
|
||||
* 取餐码
|
||||
*/
|
||||
private String takeCode;
|
||||
|
||||
/**
|
||||
* 订单类型-
|
||||
|
||||
Reference in New Issue
Block a user