1
luodangjia
2025-01-21 68ee18438e99995d2d108cccb36e75f77ea96d76
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
package com.ruoyi.system.api.model;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
@Schema(description = "营业执照信息")
public class BusinessLicense {
    @Schema(description = "注册日期")
    private String RegistrationDate;
    @Schema(description = "公司类型")
    private String companyType;
    @Schema(description = "公司名称")
    private String companyName;
    @Schema(description = "经营范围")
    private String businessScope;
    @Schema(description = "抬头")
    private String title;
    @Schema(description = "有效期")
    private String validPeriod;
    @Schema(description = "公司形式")
    private String companyForm;
    @Schema(description = "统一社会信用代码")
    private String creditCode;
    @Schema(description = "注册资本")
    private String registeredCapital;
    @Schema(description = "法人")
    private String legalPerson;
    @Schema(description = "有效期从")
    private String validFromDate;
    @Schema(description = "地址")
    private String businessAddress;
    @Schema(description = "有效期至")
    private String issueDate;
    @Schema(description = "有效期至")
    private String validToDate;
}