xuhy
2024-11-01 fb8ad9392d5ea43deaff90b1a9bedd316037bfdc
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
package com.ruoyi.admin.importExcel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 导入模板
 */
@Data
public class FrozenBuckleImportDTO implements Serializable {
    @ExcelProperty(value = "站点名称")
    private String siteName;
 
    @ExcelProperty(value = "服务信息")
    private String serveName;
 
    @ExcelProperty(value = "预约姓名")
    private String reservationName;
    @ExcelProperty(value = "预约电话")
    private String reservationPhone;
    @ExcelProperty(value = "省份")
    private String province;
    @ExcelProperty(value = "市")
    private String city;
    @ExcelProperty(value = "区")
    private String area;
    @ExcelProperty(value = "详细地址")
    private String reservationAddress;
    @ExcelProperty(value = "上门时间")
    private String custClass;
    @ExcelProperty(value = "服务人员")
    private String serverName;
    @ExcelProperty(value = "备注")
    private String reservationRemark;
 
    private Integer siteId;
    private Integer serverId;
    private Integer serveId;
    private Double longitude;
    private Double latitude;
    private String provinceCode;
    private String cityCode;
    private String areaCode;
    private String serverPhone;
}