商户视频号 管理
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user