|
|
|
@@ -8,7 +8,6 @@ import lombok.ToString; |
|
|
|
import javax.persistence.Id; |
|
|
|
import javax.persistence.Table; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@@ -75,6 +74,21 @@ public class WxCampaign extends BaseEntity { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="富文本",name="html") |
|
|
|
private String html; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "报名人数", name = "personLimit") |
|
|
|
private Integer personLimit; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "活动时间", name = "activityTime") |
|
|
|
private Date activityTime; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "使用积分1是0否", name = "useCredit") |
|
|
|
private Integer useCredit; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "消耗积分", name = "credit") |
|
|
|
private Integer credit; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "问题", name = "question") |
|
|
|
private String question; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "是否过期1是0否", name = "isExpired") |
|
|
|
private Integer isExpired; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "活动类型1直接投放2限时投放", name = "activityType") |
|
|
|
private Integer activityType; |
|
|
|
|
|
|
|
@Transient |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="小程序路径",name="weappPath") |
|
|
|
protected String weappPath; |
|
|
|
|