4 小时以前 4d15fa8051884869c5b612d0641508874cc71811
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
package cn.iocoder.yudao.module.srm.controller.admin.supplier.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - 供应商联系人 Response VO")
@Data
public class SrmSupplierContactRespVO {
 
    @Schema(description = "联系人ID")
    private Long id;
 
    @Schema(description = "供应商ID")
    private Long supplierId;
 
    @Schema(description = "联系人姓名")
    private String name;
 
    @Schema(description = "职位")
    private String position;
 
    @Schema(description = "手机号码")
    private String mobile;
 
    @Schema(description = "固定电话")
    private String telephone;
 
    @Schema(description = "邮箱")
    private String email;
 
    @Schema(description = "微信号")
    private String wechat;
 
    @Schema(description = "是否默认联系人")
    private Boolean isDefault;
 
    @Schema(description = "排序")
    private Integer sort;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}