成功开店代码改造

This commit is contained in:
shuo.wang
2025-07-03 10:58:37 +08:00
parent 80966b3ddb
commit 8a4dd5693e
5 changed files with 62 additions and 40 deletions

View File

@@ -0,0 +1,22 @@
package com.cool.store.request;
import lombok.Data;
import javax.validation.constraints.NotNull;
/**
* @Author: WangShuo
* @Date: 2025/07/03/10:54
* @Version 1.0
* @注释:
*/
@Data
public class ShopListSuccessOpenRequest {
@NotNull
private Long lineId;
private Integer pageNum = 1;
private Integer pageSize = 10 ;
private String storeName;
}