You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
711 B
31 lines
711 B
package com.ccic.safeliab.vo; |
|
|
|
import lombok.Data; |
|
|
|
import java.util.List; |
|
|
|
@Data |
|
public class EnterpriseArchivesVO { |
|
|
|
// 企业基本信息 |
|
private String customerNo; |
|
private String typeName; |
|
private String socialCreditCode; |
|
private String legalPerson; |
|
private String contacts; |
|
private String email; |
|
private String contactsPhone; |
|
private String typePname; |
|
private String businessScope; |
|
private String orgRegistrationAddress; |
|
|
|
// 保单记录 |
|
private List<PolicyStatisticsVO> policyList; |
|
|
|
// 理赔记录 |
|
private List<HiveClaimStatisticsVO> hiveClaimStatisticsList; |
|
|
|
// 服务记录 |
|
private List<ServiceStatisticsVO> serviceStatisticsList; |
|
|
|
}
|
|
|