feat(common): 新增多个 VO 类
- 新增了多个与公司、合同、项目、库存等相关的 VO 类 - 这些类用于数据传输和接口定义,提高了系统的可维护性和扩展性 - 使用了 Lombok 注解,简化了类的编写
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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 CustomerSatisfactionSurveyVo implements IdentityEntity, ProjectBasedVo {
|
||||
private Integer id;
|
||||
private Integer projectId;
|
||||
private String code;
|
||||
private LocalDate date;
|
||||
private int totalScore;
|
||||
private String data;
|
||||
private Integer applicantId;
|
||||
private LocalDateTime applyTime;
|
||||
private String description;
|
||||
private boolean active = false;
|
||||
}
|
||||
Reference in New Issue
Block a user