package com.ecep.contract.vo; import com.ecep.contract.model.IdentityEntity; import java.time.LocalDate; import java.time.LocalDateTime; import lombok.Data; @Data public class CompanyCustomerEntityVo implements IdentityEntity { private Integer id; private Integer companyCustomerId; private String customerName; private String name; private String abbName; private String code; private Integer customerCatalogId; private String catalogName; private Integer creatorId; private String creatorName; private Integer modifierId; private String modifierName; private LocalDate modifyDate; private LocalDate developDate; private LocalDate updatedDate; private LocalDateTime fetchedTime; }