cloudroam
10 天以前 6392e2a39c07d13066a115e294a87a8cce1cb11e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.dto.request.film;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FilmHotCityQueryDTO {
 
    @ApiModelProperty(value = "城市名称")
    private String name;
 
    @ApiModelProperty(value = "所在国家")
    private String country;
 
    @ApiModelProperty(value = "所在洲")
    private String continent;
 
    @ApiModelProperty("启用/禁用(USER_ENABLED_OR_DISABLED)")
    private Integer isEnabled;
}