This commit is contained in:
张良(004796)
2023-12-25 20:53:23 +08:00
parent e00a1638e1
commit 023a5446a7
10 changed files with 108 additions and 539 deletions

View File

@@ -1,8 +1,10 @@
package com.ruoyi.cai.dto.app.query;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "主播查询条件")
public class AnchorListQuery {
/**
@@ -11,7 +13,9 @@ public class AnchorListQuery {
* 2-新人查询
* 3-同城查询
*/
@Schema(description = "类型")
private Integer type;
@Schema(description = "城市")
private String city;
}

View File

@@ -1,11 +1,15 @@
package com.ruoyi.cai.dto.app.query;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "赠送守护入参")
public class GiveGuardRes {
@Schema(description = "接收方用户ID")
private Long toUserId;
@Schema(description = "赠送数量")
private Long guardNum;
}