| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @author chan
- * @date 2022/12/13 2:27 PM
- */
- @Getter
- @Setter
- public class ChannelPopularize extends BaseEntity{
- /**
- * 渠道id
- */
- private Long channelId;
- /**
- * 链接名称
- */
- private String name;
- /**
- * url
- */
- private String url;
- /**
- * 样式
- */
- private String modality;
- /**
- * 支付方式
- */
- private String payMethod;
- /**
- * 是否展示规格弹窗
- */
- private Boolean isShowSku;
- /**
- * 是否隐藏平台logo
- */
- private Boolean isShowLogo;
- }
|