返回值fix

This commit is contained in:
bianyadong
2024-05-14 16:58:17 +08:00
parent daefaf4397
commit 6aaf02b538
3 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
package com.cool.store.request;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @author byd
* @date 2024-04-24 16:40
*/
@Data
public class ShopIdRequest {
@ApiModelProperty("shopId")
private Long shopId;
}