bug
This commit is contained in:
parent
f9be9ea02d
commit
98e13da32d
@ -3,6 +3,7 @@ package com.fuint.business.marketingActivity.activeConsumption.dto;
|
||||
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.fuint.business.marketingActivity.activeConsumption.entity.ActiveConsumptionChild;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
@ -15,6 +16,7 @@ import java.util.List;
|
||||
* @since 2023-11-10 10:44:58
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
@Data
|
||||
public class ActiveConsumptionDTO extends Model<ActiveConsumptionDTO> {
|
||||
//主键id
|
||||
private Integer id;
|
||||
@ -22,6 +24,8 @@ public class ActiveConsumptionDTO extends Model<ActiveConsumptionDTO> {
|
||||
private Integer chainStoreId;
|
||||
//所属店铺id
|
||||
private Integer storeId;
|
||||
//满足金额类型 1:订单金额 2:实付金额
|
||||
private String moneyType;
|
||||
//活动名称
|
||||
private String name;
|
||||
//满足金额
|
||||
|
@ -26,6 +26,8 @@ public class ActiveConsumptionVO extends Model<ActiveConsumptionVO> {
|
||||
private Integer storeId;
|
||||
//活动名称
|
||||
private String name;
|
||||
//满足金额类型 1:订单金额 2:实付金额
|
||||
private String moneyType;
|
||||
//满足金额
|
||||
private String participationConditionMoney;
|
||||
//活动开始时间
|
||||
|
Loading…
Reference in New Issue
Block a user