1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cc.mrbird.febs.mall.dto;
|
| import lombok.Data;
|
| /**
| * 售后服务配置 DTO
| * 对应 data_dictionary_custom 表 type='SALES_SERVICE' 的多条记录
| *
| * @author auto-generated
| */
| @Data
| public class SalesServiceDto {
| /** WhatsApp 号码 */
| private String whatsApp;
| /** 联系电话 */
| private String phone;
| /** 联系邮箱 */
| private String email;
| /** 联系地址 */
| private String address;
| /** 工作时间 */
| private String workingHours;
| }
|
|