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.
43 lines
786 B
Java
43 lines
786 B
Java
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.activity.entity.PmnActivityInstance;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
*/
|
|
@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 Long caseId;
|
|
|
|
private Long status;
|
|
|
|
private Long isAddition;
|
|
|
|
private Date expiredTime;
|
|
|
|
private String code;
|
|
|
|
private String qrCode;
|
|
|
|
private Date createTime;
|
|
|
|
private Date updateTime;
|
|
}
|