You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.kiisoo.ic.activity.bean;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.kiisoo.ic.store.entity.PoiStoreStaff;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@TableName ("pmn_promotion_src")
|
|
|
|
public class PromotionSrcVO {
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
private Long type;
|
|
|
|
|
|
|
|
private Long promoterId;
|
|
|
|
|
|
|
|
private Long instanceId;
|
|
|
|
|
|
|
|
private ActivityInstanceVO instanceVO;
|
|
|
|
|
|
|
|
private PromotionFriendsSrcVO friendsSrc;
|
|
|
|
|
|
|
|
private List<PoiStoreStaff> storeStaffs;
|
|
|
|
|
|
|
|
private Long caseId;
|
|
|
|
|
|
|
|
private Long status;
|
|
|
|
|
|
|
|
private Long isAddition;
|
|
|
|
|
|
|
|
private Date expiredTime;
|
|
|
|
|
|
|
|
private String code;
|
|
|
|
|
|
|
|
private String qrCode;
|
|
|
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
private Date updateTime;
|
|
|
|
}
|