shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
38
39
40
41
42
43
44
package com.ishop.model.wechat;
 
public class CreateOrderH5SceneInfoDetailVo {
 
    public CreateOrderH5SceneInfoDetailVo() {}
 
    public CreateOrderH5SceneInfoDetailVo(String url, String name) {
        this.wap_url = url;
        this.wap_name = name;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getWap_url() {
        return wap_url;
    }
 
    public void setWap_url(String wap_url) {
        this.wap_url = wap_url;
    }
 
    public String getWap_name() {
        return wap_name;
    }
 
    public void setWap_name(String wap_name) {
        this.wap_name = wap_name;
    }
 
    //    @ApiModelProperty(value = "场景类型", required = true)
    private String type = "Wap";
 
//    @ApiModelProperty(value = "WAP网站URL地址", required = true)
    private String wap_url;
 
//    @ApiModelProperty(value = "WAP 网站名", required = true)
    private String wap_name;
}