公众号 视频号 商家用户管理 字典标识字段

This commit is contained in:
2024-04-13 15:13:30 +08:00
parent eedc6fe307
commit 78c37b2636
14 changed files with 190 additions and 57 deletions

View File

@@ -32,16 +32,24 @@ public class TbShopVideo implements Serializable {
private String name;
@Column(name = "`channel_id`")
@ApiModelProperty(value = "视频号id")
@ApiModelProperty(value = "渠道id(视频号id)")
private Integer channelId;
@Column(name = "`video_id`")
@ApiModelProperty(value = "视频id")
private Integer videoId;
@Column(name = "`type`")
@ApiModelProperty(value = "1-公众号2-小程序3-视频号;")
private Integer type;
@Column(name = "`video_url`")
@ApiModelProperty(value = "视频地址")
private String videoUrl;
@Column(name = "`source_id`")
@ApiModelProperty(value = "资源Id(视频号id)(公众号id)")
private Integer sourceId;
@Column(name = "`source_url`")
@ApiModelProperty(value = "资源地址")
private String sourceUrl;
@Column(name = "`status`")
@ApiModelProperty(value = "0:关闭1开启")
private Integer status;
@Column(name = "`created_time`")
@ApiModelProperty(value = "创建时间")