无关风月
2025-01-21 8f2abbbda6c87c59d0c2c5da9979e78ea38e74db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.dsh.guns.modular.system.model;
 
 
import lombok.Data;
 
@Data
public class SiteSearchVO {
    /**
     * 省
     */
    private String province;
    /**
     * 市
     */
    private String city;
 
    /**
     * 门店名称
     */
    private String storeName;
 
    /**
     * 场地类型
     */
    private Integer siteTypeId;
 
    /**
     * 场地名称
     */
    private String name;
    /**
     * 对象类型(1=平台,2=城市管理员,3=门店)
     */
    private Integer objectType;
 
    private Integer objectId;
}