diff --git a/common/src/main/java/com/ecep/contract/vo/CompanyContractVo.java b/common/src/main/java/com/ecep/contract/vo/CompanyContractVo.java new file mode 100644 index 0000000..13d4801 --- /dev/null +++ b/common/src/main/java/com/ecep/contract/vo/CompanyContractVo.java @@ -0,0 +1,14 @@ +package com.ecep.contract.vo; + +import com.ecep.contract.model.IdentityEntity; +import lombok.Data; + +@Data +public class CompanyContractVo implements IdentityEntity { + private Integer id; + private Integer companyId; + private String companyName; + private Integer contractId; + private String contractCode; + private String contractName; +} \ No newline at end of file diff --git a/common/src/main/java/com/ecep/contract/vo/CompanyCustomerEntityVo.java b/common/src/main/java/com/ecep/contract/vo/CompanyCustomerEntityVo.java new file mode 100644 index 0000000..f16f283 --- /dev/null +++ b/common/src/main/java/com/ecep/contract/vo/CompanyCustomerEntityVo.java @@ -0,0 +1,26 @@ +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; +} \ No newline at end of file diff --git a/common/src/main/java/com/ecep/contract/vo/CompanyCustomerEvaluationFormFileVo.java b/common/src/main/java/com/ecep/contract/vo/CompanyCustomerEvaluationFormFileVo.java new file mode 100644 index 0000000..d0b5cf5 --- /dev/null +++ b/common/src/main/java/com/ecep/contract/vo/CompanyCustomerEvaluationFormFileVo.java @@ -0,0 +1,19 @@ +package com.ecep.contract.vo; + +import com.ecep.contract.model.IdentityEntity; +import lombok.Data; + +@Data +public class CompanyCustomerEvaluationFormFileVo implements IdentityEntity { + private Integer id; + private Integer customerFileId; + private String catalog; + private String level; + private Integer creditLevel = 0; + private Integer score1 = 0; + private Integer score2 = 0; + private Integer score3 = 0; + private Integer score4 = 0; + private Integer score5 = 0; + private Integer scoreTemplateVersion = 1; +} \ No newline at end of file