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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package cn.iocoder.yudao.module.srm.controller.admin.apply.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - SRM 供应商准入申请 Response VO")
@Data
public class SrmSupplierApplyRespVO {
 
    @Schema(description = "申请ID", example = "1")
    private Long id;
 
    @Schema(description = "申请编号", example = "AP2024010001")
    private String applyNo;
 
    @Schema(description = "供应商ID(SRM供应商ID,审批通过后回填)", example = "1")
    private Long supplierId;
 
    @Schema(description = "供应商名称", example = "XX科技有限公司")
    private String supplierName;
 
    @Schema(description = "供应商类型", example = "1")
    private String supplierType;
 
    @Schema(description = "企业性质", example = "有限责任公司")
    private String companyNature;
 
    @Schema(description = "注册资金(万元)", example = "1000")
    private BigDecimal registeredCapital;
 
    @Schema(description = "营业执照编号", example = "91310000XXXXXXXXXX")
    private String businessLicenseNo;
 
    @Schema(description = "税号", example = "91310000XXXXXXXXXX")
    private String taxNo;
 
    @Schema(description = "公司地址", example = "上海市浦东新区XX路XX号")
    private String address;
 
    @Schema(description = "联系人", example = "张三")
    private String contactName;
 
    @Schema(description = "联系电话", example = "13800138000")
    private String contactMobile;
 
    @Schema(description = "邮箱", example = "zhangsan@example.com")
    private String contactEmail;
 
    @Schema(description = "申请人ID", example = "1")
    private Long applyUserId;
 
    @Schema(description = "申请人名称", example = "张三")
    private String applyUserName;
 
    @Schema(description = "申请时间")
    private LocalDateTime applyTime;
 
    @Schema(description = "申请状态", example = "0")
    private Integer applyStatus;
 
    @Schema(description = "采购审核人ID", example = "2")
    private Long purchaseReviewerId;
 
    @Schema(description = "采购审核时间")
    private LocalDateTime purchaseReviewTime;
 
    @Schema(description = "采购审核意见", example = "同意")
    private String purchaseReviewOpinion;
 
    @Schema(description = "质量审核人ID", example = "3")
    private Long qualityReviewerId;
 
    @Schema(description = "质量审核时间")
    private LocalDateTime qualityReviewTime;
 
    @Schema(description = "质量审核意见", example = "同意")
    private String qualityReviewOpinion;
 
    @Schema(description = "财务审核人ID", example = "4")
    private Long financeReviewerId;
 
    @Schema(description = "财务审核时间")
    private LocalDateTime financeReviewTime;
 
    @Schema(description = "财务审核意见", example = "同意")
    private String financeReviewOpinion;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}