27 lines
581 B
Java
27 lines
581 B
Java
package com.ecep.contract.vo;
|
|
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
|
|
import com.ecep.contract.model.IdentityEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class CompanyCustomerVo implements IdentityEntity, CompanyBasedVo {
|
|
private Integer id;
|
|
/**
|
|
* 公司
|
|
*/
|
|
private Integer companyId;
|
|
private Integer catalogId;
|
|
private LocalDate developDate;
|
|
private String path;
|
|
/**
|
|
* 对口联系人
|
|
*/
|
|
private Integer contactId;
|
|
private String description;
|
|
private LocalDateTime created;
|
|
private int version;
|
|
} |