Administrator
2026-06-13 05136f3552d8f1a2607a92da4e30378702f4af4b
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
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "MallSalesServiceVo", description = "地址信息返回参数类")
public class MallSalesServiceVo {
 
    @ApiModelProperty(value = "whatsApp")
    private String whatsApp;
 
    @ApiModelProperty(value = "phone")
    private String phone;
 
    @ApiModelProperty(value = "email")
    private String email;
 
    @ApiModelProperty(value = "Address")
    private String address;
 
    @ApiModelProperty(value = "Working Hours")
    private String workingHours;
 
}