| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.haha.entity.dto;
- import lombok.Data;
- import java.math.BigDecimal;
- import java.time.LocalDateTime;
- import java.util.List;
- @Data
- public class ActivityUpdateDTO {
- private Long id;
- private String activityName;
- private String activityDesc;
- private LocalDateTime startTime;
- private LocalDateTime endTime;
- private BigDecimal discountValue;
- private BigDecimal minAmount;
- private BigDecimal maxDiscount;
- private Integer applyScope;
- private Integer deviceScope;
- private Integer productScope;
- private BigDecimal totalBudget;
- private List<Long> shopIds;
- private List<String> deviceIds;
- private List<Long> productIds;
- }
|