package com.ruoyi.shop.util.dto;
|
|
/**
|
* @ClassName BusinessLicenseInfo
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/6/19 12:54
|
* @Version 1.0
|
*/
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 营业执照/登记证书信息
|
*/
|
@Data
|
public class BusinessLicenseInfo implements Serializable {
|
private static final long serialVersionUID=1L;
|
/**证件扫描件*/
|
private String business_license_copy;
|
/**证件注册号*/
|
private String business_license_number;
|
/**商户名称*/
|
private String merchant_name;
|
/**经营者/法定代表人姓名*/
|
private String legal_person;
|
/**注册地址*/
|
private String company_address;
|
/**营业期限*/
|
private String business_time;
|
}
|