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; }