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.
40 lines
687 B
Java
40 lines
687 B
Java
package com.kiisoo.ic.activity.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
*/
|
|
@Data
|
|
@TableName ("pmn_promotion_src")
|
|
public class PmnPromotionSrc {
|
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
|
|
|
private Long type;
|
|
|
|
private Long promoterId;
|
|
|
|
private Long instanceId;
|
|
|
|
private Long caseId;
|
|
|
|
private Long status;
|
|
|
|
private Long isAddition;
|
|
|
|
private Date expiredTime;
|
|
|
|
private String code;
|
|
|
|
private String qrCode;
|
|
|
|
private Date createTime;
|
|
|
|
private Date updateTime;
|
|
}
|