5 小时以前 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
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;
 
@Schema(description = "管理后台 - SRM 供应商准入申请创建/更新 Request VO")
@Data
public class SrmSupplierApplySaveReqVO {
 
    @Schema(description = "申请ID", example = "1")
    private Long id;
 
    @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;
 
}