feat(common): 新增多个 VO 类

- 新增了多个与公司、合同、项目、库存等相关的 VO 类
- 这些类用于数据传输和接口定义,提高了系统的可维护性和扩展性
- 使用了 Lombok 注解,简化了类的编写
This commit is contained in:
2025-09-18 08:45:08 +08:00
parent 588779d611
commit d0645c33f1
56 changed files with 1174 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package com.ecep.contract.vo;
import com.ecep.contract.model.IdentityEntity;
import java.time.LocalDate;
import lombok.Data;
@Data
public class SalesOrderVo implements IdentityEntity {
private Integer id;
private Integer contractId;
private String code;
private String name;
private Integer customerId;
private LocalDate orderDate;
private Double totalAmount;
private Double taxAmount;
private Double taxRate;
private Integer statusId;
private String remark;
private Boolean active;
}