商户视频号 管理

This commit is contained in:
2024-04-09 15:06:44 +08:00
parent 26a4fd6214
commit a70deaa375
10 changed files with 326 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
package cn.ysk.cashier.dto.shop;
import lombok.Data;
import java.sql.Timestamp;
import java.io.Serializable;
/**
* @author ww
**/
@Data
public class TbShopVideoDto implements Serializable {
private Integer id;
/** 描述信息 */
private String name;
/** 店铺id */
private Integer shopId;
/** 视频号id */
private Integer channelId;
/** 视频id */
private Integer videoId;
/** 视频地址 */
private String videoUrl;
/** 创建时间 */
private Timestamp createdTime;
/** 更新时间 */
private Timestamp updateTime;
}

View File

@@ -0,0 +1,17 @@
package cn.ysk.cashier.dto.shop;
import cn.ysk.cashier.annotation.Query;
import lombok.Data;
@Data
public class TbShopVideoQueryCriteria {
@Query
private Integer shopId;
private Integer pageSize = 10;
private Integer page = 0;
private String sort;
}