zhanghua
2025-04-14 1cad14bca191807e18705c3a5526eda8151be439
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
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.ycl.entity.smoke;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@Data
@EqualsAndHashCode(callSuper = false)
public class OdsLocaleCustomer {
 
    @JsonProperty("Id")
    private int id;
    @JsonProperty("Pid")
    private String pid;
    @JsonProperty("BlNo")
    private String blNo;
    @JsonProperty("BlName")
    private String blName;
    @JsonProperty("Org")
    private String org;
    @JsonProperty("Name")
    private String name;
    @JsonProperty("Contact")
    private String contact;
    @JsonProperty("Mobile")
    private String mobile;
    @JsonProperty("Telephone")
    private String telephone;
    @JsonProperty("Typ")
    private int typ;
    @JsonProperty("Creator")
    private String creator;
    @JsonProperty("CreateAt")
    private long createAt;
    @JsonProperty("Status")
    private int status;
    @JsonProperty("Address")
    private String address;
    @JsonProperty("Logo")
    private String logo;
    @JsonProperty("BusinessHour")
    private String businessHour;
    @JsonProperty("Desc")
    private String desc;
    @JsonProperty("MaintainerId")
    private String maintainerId;
    @JsonProperty("AreaIds")
    private String areaIds;
    @JsonProperty("AreaIdCascades")
    private String areaIdCascades;
    @JsonProperty("Areas")
    private String areas;
    @JsonProperty("PerPage")
    private int perPage;
    @JsonProperty("Page")
    private int page;
}