package com.panzhihua.common.model.dtos.community.microCommercialStreet;
|
|
import javax.validation.constraints.NotNull;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @title: SetPopularForGameDTO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 设为/取消游戏热门请求参数
|
* @author: hans
|
* @date: 2021/12/30 16:29
|
*/
|
@Data
|
@ApiModel("设为/取消游戏热门请求参数")
|
public class SetPopularForGameDTO {
|
|
@ApiModelProperty(value = "处理类型(1.设为热门 2.取消热门)", required = true, allowableValues = "1,2")
|
@NotNull(message = "处理类型不能为空")
|
private Integer type;
|
|
@ApiModelProperty(value = "游戏id", required = true)
|
@NotNull(message = "游戏id不能为空")
|
private Long gameId;
|
|
@ApiModelProperty(value = "处理人", hidden = true)
|
private Long updatedBy;
|
}
|